查看完整版本: 怎样遍历页面中的元素?

liuzhusuoai 2006-3-7 13:39

怎样遍历页面中的元素?

怎样遍历页面中每一个的元素,因为我编写一个函数,当打印时自动将不打印的部分元素隐藏。

xingyungulang 2006-3-7 13:40

<style>  
@media  print  {.ptn  {display:block;}.notptn  {display:none;}.onlyPrint{page-break-before:always}}  
</style>  

<input  type=button  value="打印">  
<input  type=button  value="不打印"    class="notptn">

Nothing 2006-3-7 16:09

楼上的,真高
页: [1]
查看完整版本: 怎样遍历页面中的元素?