我有一个我想用 jQuery 多次附加的 var。代码是这样的:
var number = 4; //number of times the html must be appended
html = $("<div>Content here</div>"); //The html I want to append
$(document).ready(function() {
$("body").append(html * number); //Append the div multiple times
});
我想知道如何使 html var 附加数字 var (4) 中提到的次数?上面的代码不起作用,我明白为什么。但我看不到修复它的方法。有任何想法吗?(我不是 jQuery 方面的专家!)