我有以下脚本可以从给定的字符串中成功删除标签。但现在的问题是,如果我不尝试删除脚本标签,下面的 fun() 函数会自动删除脚本标签。有人可以尝试向我解释吗?
<script src="jquery-1.8.3.js"></script>
<script>
function fun(x)
{
alert(x);
var html = $(x.bold());
html.find('p').remove();
return html.html();
//alert(html);
}
</script>
<input type="button" value="click" onclick="alert(fun('<script>hello script</script><p>hello p</p><div>hello div</div>'))">