美文网首页
页面部分内容打印的时候忽略

页面部分内容打印的时候忽略

作者: QAQ叽里咕噜小人鱼 | 来源:发表于2019-12-27 17:28 被阅读0次

最近有个需求是,页面上显示个按钮,点击按钮的时候给用户发邮件,但是打印该页面的时候,要忽略按钮

查了下,确实有这样的css属性,打印的时候忽略。

html部分

    <input name="_csrf" type="hidden" id="_csrf" value="<?=Yii::$app->request->csrfToken ?>">

        <button class="btn btn-primary pull-right" id="send_to_customer" style="width:240px; margin:0 auto;

        background-color:#337ab7;border-color:#2e6da4; font-size:28px; border-radius:10px;}">

            Send to Customer

</div>

style 部分

<style>

@media print {

#button_send{

display:none;

    }

}

</style>

相关文章

网友评论

      本文标题:页面部分内容打印的时候忽略

      本文链接:https://www.haomeiwen.com/subject/vmidoctx.html