Possible Duplicate:
How do I select text nodes with jQuery?
我正试图将正文中的数据移到关于筛选检查箱的检查箱旁。 我正在使用jquery。 我所尝试的方法列于下文,其结果是我收到的。
<input class="item" type="checkbox" /> Category 1
<input class="item" type="checkbox" /> Category 2
<script>
$( .item ).click(function(){
if($(this).attr( checked ))
{
$( #list ).append("<span>" + $(this).next() + "<span><br/>")
//$(this).next() just writes "[object Object]"
//$(this).next().text() doesn t write anything
//Also tried $(this).nextSibling.nodeValue but throws "Cannot access property of undefined"
}
else
{
//This is remove the item from the list on uncheck
}
});
</script>