鏈接都用新窗口打開的幾種方法
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
1.JS
Code <script type="text/javascript"> function externallinks() { if (!document.getElementsByTagName) return; var anchors = document.getElementsByTagName("a"); for (var i=0; i<anchors.length; i++) { var anchor = anchors[i]; if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank"; } } window.onload = externallinks; </script> <a href="http://www.126.com">打開一個(gè)新窗口</a> 2.HEAD聲明 Code <head> <base target="_blank"> </head> <body> <p><a href="http://bbs.blueidea.com/thread-2708790-1-1.html">打開打開,給我打開</a></p> </body> 3.css定義 Code <style> a {oTarget:expression(onclick=function(){this.target="_blank"})} </style> <a href="#1">aaa</a> 4.jquery的用法。 Code <script type="text/javascript" src="http://www.China-Staff-job.com/include/jquery/jquery-1.1.3.1.pack.js"></script> <img src="1.jpg"> <br><br><br> <img src="2.jpg"> <br><br><br> <img src="3.jpg"> <br><br><br> <img src="4.jpg"> <br><br><br> <img src="5.jpg"> <br><br><br> <a href="1.jpg">1.jpg</a> <br><br><br> <a href="2.jpg">2.jpg</a> <br><br><br> <a href="3.jpg">3.jpg</a> <br><br><br> <a href="4.jpg">4.jpg</a> <br><br><br> <a href="5.jpg">5.jpg</a> <br><br><br> <script language="javascript"> $("img").click(function(){ window.open(this.src); }); $("a").css("cursor","pointer"); $("a").click(function(){ window.open(this.href);return false; }); </script> 該文章在 2010/8/13 23:28:12 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |