我试图在您使用 jQuery 打开页面(通过强制单击)后立即打开一个链接,但它不起作用。
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$('a.bla').click(function(){
window.open(this.href);
return false;
});
});
</script>
</head>
<body>
<a href="url-to-open.php" target="_blank" class='bla'><img src="pic.png" alt="" style="border:none;" /></a>
</body>
</html>
我不知道出了什么问题。我希望你们中的某个人知道如何解决这个问题。