用户工具

站点工具


Command disabled: resendpwd
jquery:open-link-new-window

jQuery 实现在新窗口中打开链接

 <script src="http://code.jquery.com/jquery-latest.js"></script>
 <script type="text/javascript">
   // open url in new a window
   $(document).ready(function(){
     $("a").attr("target", "_blank");
   });
 </script>

在新窗口中打开外部链接

$('a[href^="http://"]')
  .attr("target", "_blank");
jquery/open-link-new-window.txt · 最后更改: 2010/06/02 01:18 (外部编辑)