指引网

当前位置: 主页 > 网页制作 > WEB开发 >

网页制作常用代码三

来源:网络 作者:佚名 点击: 时间:2017-07-19 00:31
[摘要] 网页制作常用代码,新手必看. 如何让一个窗口永远在最上面? a onclick=aa()点这里/a script language='javascript' function aa(){ y=window.showModalDialog( http://,,Height : 300; Width: 275; help: no); } /script **************

网页制作常用代码,新手必看.

如何让一个窗口永远在最上面?
<a onclick=aa()>点这里</a>
<script language='javascript'>
function aa(){
y=window.showModalDialog("http://","","Height: 300; Width: 275; help: no");
}
</script>

********************************************
target="_blank"规定链接在新窗口中打开,那 target="_parent"、 target="_self" 、target="_top"的作用又是什么?
target="_parent"、上一层框架
target="_self" 、自身窗口、框架
target="_top" 最顶层框架。

更细点的解释,从网上找来的:

_blank

------分隔线----------------------------