我想在搜索之前删除/隐藏跨度标签。我使用了html.contents().unwrap()
. 但
工作。当我搜索“S”时,它显示跨度标签。
这是我的小提琴 http://jsfiddle.net/AzRcn/11/
$('.search').on('click', function () {
$('#scroller pre').html(function(_, html) {
html.contents().unwrap();
return html.replace(/\ \;/g, ' ');
});