gpt4 book ai didi

javascript - jquery id点击函数放在哪里

转载 作者:行者123 更新时间:2023-12-03 08:33:48 24 4
gpt4 key购买 nike

在我的ajax成功函数中,我有以下代码:

$('#searchButton').on('click',function(){
//ajax call
//within that ajax call's success function:
$.ajax({
type: 'POST',
url: 'search.php',
data: {x:x},
success:function(dataReturn){

$('#returnThree').html(
"<img id='expandThree' class='expandThree' src='../../img/expand.png'>"
);

我有另一个函数,当用户单击此图像时我想调用它,但我不知道将代码放在哪里,因为似乎没有任何作用:

$("#expandThree").click(function() {
console.log('hi');
});

我尝试将它放在 $('#searchButton').on('click',function(){ 的内部和外部,但它没有调用。我究竟做错了什么?

最佳答案

在您的成功回调中尝试一下:

var $img = $("<img id='expandThree' class='expandThree' src='../../img/expand.png'>")
.appendTo('#returnThree')
.on("click", function() {});

Fiddle

关于javascript - jquery id点击函数放在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33265531/

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