<ul class="test">
<li>
<a href="abc.com">abc.com</a>
<a href="xyz.com">xyz.com</a>
</li>
</ul>
如何在頁面加載時在新窗口中打開URL上方的URL。在頁面加載時在新窗口中打開URLS
<ul class="test">
<li>
<a href="abc.com">abc.com</a>
<a href="xyz.com">xyz.com</a>
</li>
</ul>
如何在頁面加載時在新窗口中打開URL上方的URL。在頁面加載時在新窗口中打開URLS
**I got the solution: Thanks to everyone for your help.**
<ul class="test">
<li>
<a href="abc.com">abc.com</a>
<a href="xyz.com">xyz.com</a>
</li>
</ul>
<script type='text/javascript' >
$(document).ready(function(){
$(".test li a").each(function(){
url = $(this).attr("href");
window.open(url,'_blank')
});
})
</script>
使用特定的選擇選擇
a
元素,並使用window.open
這些元素的href
屬性
$('a').each(function() {
window.open(this.href);
});
你有添加target="_blank"
<a href="abc.com" target="_blank">abc.com</a>
<a href="xyz.com" target="_blank">xyz.com</a>
您的意思是當你用這個html打開頁面時,它會打開其他窗口而不點擊任何東西? – Dhunt
@Dhunt:是的,它會打開,沒有點擊鏈接。 – harry