我已经尝试了许多不同的方法,但没有任何效果。现在我有:
$(document).ready(function () {
$(".page").click(function () {
var html = $(document).html();
html.replace("[", "<");
alert("here");
});
});
这拒绝工作。例如,它也不允许我做任何 Jquery exmaples 的事情
$("[").replaceWith("<");
在我看来, .replace 甚至不在 jQuery 中,尽管很多示例似乎都将它作为查询的一部分。有什么建议么?这开始让我感到沮丧。我试过传入一个特定的 div,但它仍然拒绝工作。有任何想法吗?任何帮助将不胜感激!