可以只打印页面内的文字内容[网页特效] dn001 2009-06-21 08:35:29 <!--要完成此效果需要两个步骤 第一步:把如下代码加入到<head>区域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function settitle() { var a = "你看到这里的变化了吗? "; var b = "此脚本十秒种后自动改变标题"; var c = "你想好这里放什么内容了吗?"; var t = new Date(); s = t.getSeconds(); if (s == 10) { document.title = a;} else if (s == 20) { document.title = b;} else if (s == 30) { document.title = c;} else if (s == 40) { document.title = a;} else if (s == 50) { document.title = b;} else if (s == 00) { document.title = c;} setTimeout("settitle()", 1000); } // End --> </script> <!-- 第二步:把“onLoad="settitle()"”加在<body>标记里 --> <body onLoad="settitle()">