我需要在我的网站上获取页面标题,然后将其插入到页面的打印版本中。我有一个单独的print.css的课程,但有没有办法我可以获取标题数据,可能使用jQuery作为变量,然后使用CSS插入,例如。 div:在{content:“变量名称到此处”}之前?或者有更好的方法吗?
答案 0 :(得分:1)
我的主页上只有一个隐藏元素,在打印CSS中获得display:block;
。
答案 1 :(得分:0)
当然!
// this would be an example of how to grab the title
<script language="JavaScript">
alert(document.title);
</script>
我的方法会略有不同。
<h1 class="web-hide">the page title goes here</h1>
然后根据页面的打印/非打印版本,您将看到.web-hide
可见/不可见。