0

假设我有一段这样的代码:

Lorem ipsum <span>dolor sit amet</span>, lorem ipsum dolor...

我可以使用 jQuery 选择跨度并将其从 DOM 中删除,但这也会删除包含的文本。有没有办法使用 jQuery 在保留文本的同时删除换行范围?是否可以在原始位置重新注入文本,还是有更简单的方法?

4

4 回答 4

6

使用$('span').contents().unwrap().

nb:.unwrap()从元素(或文本节点)中删除父级,因此您必须深入到的内容中<span>然后解开它们。

于 2013-03-25T15:41:04.843 回答
2

您需要解开跨度内的内容:

$("span").contents().unwrap();
于 2013-03-25T15:40:43.627 回答
1

使用 .unwrap() 方法。http://api.jquery.com/unwrap/

$('span').contents().unwrap();
于 2013-03-25T15:38:15.003 回答
0

在 IE 浏览器中显示/隐藏下拉选项,这是经过测试的代码

$("#PrimaryIndustry").find("select").children("option[value='" + selectedIndustry + "']").wrap('<span>').hide(); // use for hide option

$("#PrimaryIndustry").find("select").children("option[value='" + selectedIndustry + "']").unwrap('<span>').show(); // use for show option.
于 2018-02-27T12:34:11.757 回答