js target特性

来源:互联网 发布:金融互助网站源码 编辑:程序博客网 时间:2024/05/18 17:41

_blank        <a href="document.html" target="_blank">my document</a>      

                   浏览器会另开一个新窗口显示document.html文档 


_parent      <a href="document.html" target="_parent">my document</a>    

                   指向父frameset文档 


_self          <a href="document.html" target="_self">my document</a>        

                 把文档调入当前页框


_top         <a href="document.html" target="_top">my document</a>

                去掉所有页框并用document.html取代frameset文档  


        小技巧1:使别人的页框不能引用你的网页        在文件头加:<base target="_top">  
        小技巧2:在当前页打开连接或做刷新,提交到当前页在文件头加:<base target="_self">

        小技巧3:指定背景色  target.style.background="red";

 

原创粉丝点击