gpt4 book ai didi

.after() 内的 Javascript while 循环

转载 作者:行者123 更新时间:2023-11-30 05:46:33 26 4
gpt4 key购买 nike

例如,是否可以在 .after() 中编写一个 while 循环

$(".item-row:last").after('<tr class="item-row"><td class="description"><select name="description">' + while(x<2){ + '<option>' + variable + '</option> '+ x++; } + '</select></td></tr>');

最佳答案

不是那样,但你总是可以使用一个函数:

$(".item-row:last").after(function() {
var markup = '<tr class="item-row"><td class="description"><select name="description">';
while (x < 2) {
markup += '<option>' + variable + '</option>';
x++;
}
markup += '</select></td></tr>';
return markup;
}());

请注意,“.after()”参数列表中的函数被调用,因此“.after()”传递了调用该匿名函数的结果 .

关于.after() 内的 Javascript while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17634180/

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