根据Nascape 6的开发者称:在以后的版本里,将废除
function blink (elId) {
var html = '';
if (document.all)
html += 'var el = document.all.' + elId + ';';
else if (document.getElementById)
html += 'var el = document.getElementById("' + elId + '");';
html +=
'el.style.visibility = ' +
'el.style.visibility == "hidden" ? "visible" : "hidden"';
if (document.all || document.getElementById)
setInterval(html, 500)
}
function init () {
blink('aText');
blink('a2ndText');
}
这行文字闪烁!!!
这行文字闪烁!!!
这行文字闪烁!!!
查看更多内容,请访问,可以看到变色的闪烁!
http://elove.heha.net
http://lucky.myrice.com
(原作者:net_lover)

