gpt4 book ai didi

jQuery 跟随目标为 ="_blank"的超链接

转载 作者:行者123 更新时间:2023-12-01 02:38:27 25 4
gpt4 key购买 nike

我正在尝试打开一个带有 target="blank"的超链接。

<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
jQuery(window).load(function() {
$('a').click();
});
</script>
</head>

<body>
<a href="http://www.google.com" target="_blank">Report</a>
</body>
</html>

最佳答案

看来触发事件仅触发使用 jQuery 链接的事件。看看这个修改后的例子:

$(document).ready(function() {
$('a').click(function(){
alert('adf');
});
$('a').click();
});

关于jQuery 跟随目标为 ="_blank"的超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1574083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com