gpt4 book ai didi

jquery - jQuery 中的动态 Div

转载 作者:行者123 更新时间:2023-11-28 01:54:49 24 4
gpt4 key购买 nike

我需要为每个提交按钮创建一个唯一的 div 和一个唯一的名称 - 我是 jQuery 的新手 -请帮助我。

$(document).ready( function() {  
done();
});

function done() {
setTimeout( function() {
updates();
done();
}, 200);
}

function updates() {
$.getJSON("fetch.php", function(data) {
$("ul").empty();
$.each(data.result, function(){
$("ul").append("<li>Item: "+this['item']+
"</li><li>Price: "+this['price']+"<br />")

$("ul").append("<div id='a'><input type='submit'
style='position:relative;top:100px;'>" + "<br /></div>" )

});

});
}

最佳答案

您可以使用当前日期时间为 id 生成唯一的后缀

function generateRandomSuffix() {
return (new Date()).getMilliseconds().toString()
}

然后添加到你的id中

$("ul").append("<div id='a" + generateRandomSuffix() +"'><input type='submit' style='position:relative;top:100px;'>" + "<br /></div>" )

关于jquery - jQuery 中的动态 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17666011/

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