Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用我在这里找到的示例,我试图删除这些[ ]方括号包围的文本。
[
]
我的 html 中有很多次出现,[sample-text]并且想要删除整个内容,包括括号。
[sample-text]
我已经尝试过了,但它不起作用——没有任何东西被替换:
var replaced = $("body").html().replace(/^\[.*\]$/g,''); $("body").html(replaced);
我试图匹配开始使用[和结束]并删除内部内容,但我无处可去。
var replaced = $("body").html().replace(/\[.*\]/g,''); $("body").html(replaced);