a = $("table").clone().find("p:has(input)").contents().not("span:has(input:checked)").remove().end().text()
b = $("table").clone().find("p:has(input)").contents().not("span:has(input:checked)").text()
c = $("table").clone().find("p:has(input)").contents().not("span:has(input:checked)").empty().end().text()
d = $("table").clone().text()
$("#a").text(a)
$("#b").text(b)
$("#c").text(c)
$("#d").text(d)
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table>
<tbody>
<tr>
<td>Foo</td>
<td>
<p>
<span><input type="checkbox" disabled="disabled">1</span>
<span><input type="checkbox" disabled="disabled" checked="checked">2</span>
<span><input type="checkbox" disabled="disabled">3</span>
</p>
</td>
</tr>
</tbody>
</table>
A: <span id="a"></span><br/>
B: <span id="b"></span><br/>
C: <span id="c"></span><br/>
D: <span id="d"></span><br/>
EXPECTED: Foo 2
我的逻辑是找到删除里面<p>
的所有内容,除了<span>
选中的<input>
. 然后打印出.text()
修改后的 HTML。
我知道 jQuery 语句是部分正确的,因为b
正确选择了应该删除的两个选项,即1
和3
. 只是不确定如何只制作 jQuery 输出Foo 2
。
我假设.end()
会“退出” .find()
,但事实并非如此。我该如何纠正这个问题或者有更好的方法来做到这一点?
最后,我需要一个没有(匿名)函数的单行 jQuery 语句,因为我使用的工具只支持单行 jQuery 语句。嵌套很好,即$("foo").find($("bar"))
. 我最终只想提取此 HTML 的 .text() ,因此我想删除未检查相应输入的文本。