考虑以下 HTML
<fieldset>
<legend>FOO</legend>
<div> <!-- this is not static code...it's generated by jQuery-->
<input type="checkbox" id="chkBox" />
</div>
</fieldset>
当我运行这个 jQuery
console.log($("#chkBox").parent());
我得到[Fieldset]
而不是预期的[div]
......我不知道为什么!?
编辑:这里只是一个简短的点......<div>
标签是由jQuery生成的......所以实际上,字段集是父级(硬编码)......那么我将如何获得动态创建的父级?