gpt4 book ai didi

javascript 未检测到链接的点击

转载 作者:行者123 更新时间:2023-12-03 11:17:00 24 4
gpt4 key购买 nike

我正在插入链接元素并希望分享点击次数,但我没有得到..测试代码:

<html>
<title></title>
<head>

<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
$("#teste").click(function(){
$("body").append($("<a>").text("Element A"));
});

$("a").click(function(){
alert("oi");
});
});

</script>

</head>
<body>
<input type="button" value="INSERT A" id="teste" />
</body>
</html>

最佳答案

附加事件时,链接不在页面上。这就像在制作披萨之前尝试吃它一样。您要么需要在单击事件时附加该事件,要么需要使用事件委托(delegate)。

$(document).on("click", "a", function(){
alert("oi");
});

关于javascript 未检测到链接的点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27298150/

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