Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windows Mobile IE 10 未在新选项卡中打开链接
target="_blank" 或 window.open('URL', "_blank"); ----> 不工作。
有什么解决办法???
你可以尝试使用 JS:
<script type="text/javascript" src="jquery.js"></script> <a href="<!-- YOUR LINK -->" rel="external">LINK NAME</a> <script type="text/javascript"> $('a[rel=external]').attr('target','_blank'); </script>