gpt4 book ai didi

javascript - 替换整个文档中的字符 JQuery

转载 作者:行者123 更新时间:2023-11-29 09:55:59 25 4
gpt4 key购买 nike

我已经尝试了多种不同的方法来解决这个问题,但没有任何效果。现在我有:

    $(document).ready(function () {
$(".page").click(function () {

var html = $(document).html();

html.replace("[", "<");

alert("here");
});


});

这拒绝工作。它也不允许我像 Jquery exmaples 那样做任何事情

  $("[").replaceWith("<");

在我看来 .replace 甚至不在 jQuery 中,尽管很多示例似乎将它作为查询的一部分。有什么建议么?这开始让我感到沮丧。我试过传递一个特定的 div,但它仍然拒绝工作。有任何想法吗?任何帮助将不胜感激!

最佳答案

这是你想要的吗?

$(document.documentElement).html(function(i,val){
return val.replace(/\[/g,'<');
});

document本身不是DOM元素,你应该使用document.documentElement相反。

关于javascript - 替换整个文档中的字符 JQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11620038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com