jquery如何在新窗口中打开可点击的div

时间:2012-11-19 11:00:07

标签: jquery target

我想制作一个没有内容可点击的DIV,因为我使用了这个jquery代码:

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">

$(document).ready(function() {
$("#whole").click(function () {
    window.location = $(this).attr("href");
    });
});

</script>

它工作正常,但链接始终在同一窗口中打开。如何更改代码,在新窗口中打开div?

4 个答案:

答案 0 :(得分:4)

$("#whole").click(function () {
   window.open($(this).attr("href"), '_blank');
});

答案 1 :(得分:3)

您需要window.open

window.open($(this).attr("href"))

答案 2 :(得分:0)

$(document).ready(function() {
$("#whole").click(function () {
    window.open("href"); // window.open('https://stackoverflow.com/questions/13452398/jquery-how-to-make-a-clickable-div-open-in-a-new-window');
    });
});

答案 3 :(得分:0)

您可以按照以下方法进行操作

1)

 $(document).ready(function() {
$("#divId").click(function () {
window.open("openThisPage.html"); //Change 'openThisPage.html' to your target page
});
});