用 jQuery 替换/重新加载输入列表并保留第一个元素
我创建了 jQuery 函数,它获取一堆包含 id 和 title 的简单对象。
然后我运行简单的循环来创建列表:
$.each(data['results'], function(key, val) {
items.push('<label for="radio_show_' + val['id'] + '" >'
+ '<input type="checkbox" name="radio_show" class="checkbox" id="radio_show_' + val['id'] + '" value="'+ val['id'] + '" >'
+ val['title']
+ '</label>');
});
但现在我不知道如何进行清洁部分。
我想将此列表附加到某些
,我可以使用 .appendTo()
来做到这一点,但每次我调用它时,它都会添加更多和更多列表。因此,在附加之前,我需要删除包含
的 .empty()
。但主要问题是我想保留第一个元素,该元素将是相同的输入,只是没有值和“全选”标题(你明白了)。I created jQuery function that gets bunch of simple objects that contains id
and title
.
Then I run simple loop to create list:
$.each(data['results'], function(key, val) {
items.push('<label for="radio_show_' + val['id'] + '" >'
+ '<input type="checkbox" name="radio_show" class="checkbox" id="radio_show_' + val['id'] + '" value="'+ val['id'] + '" >'
+ val['title']
+ '</label>');
});
But now I don't know how to do the cleaning part.
I want to append this list to certain <ul>
, I could do that with .appendTo()
, but each time i would call this, it would add more and more lists. So before appending I would need to delete <ul>
contains with .empty()
. But the main problem is that I want to keep first element that would be same input just with no value and title of "Select all" (You get the idea).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用类似的方法来“清除”
ul
-这应该从第一个项目中删除
ul
aprt 中的所有项目。工作演示 - http://jsfiddle.net/zUuE9/
Could you use something like this to 'clear' the
ul
-That should remove all the items in the
ul
aprt from the first one.Working demo - http://jsfiddle.net/zUuE9/
您可以通过以下方式清除
ul
:这会将您的全选复选框 (value="") 保留在
ul
中。You could clear your
ul
with:This would leave your Select All Checkbox (value="") in the
ul
.要删除除第一个之外的所有 li,请尝试以下操作:
To remove all li's except for the first one, try this: