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.
我需要在使用 JavaScript(特别是 jQuery)的每个括号实例之前添加一个换行符。
我一直无法找到任何表明我可以通过指定字符串的类/ID 来搜索特殊字符(在本例中为括号)并在其前面添加 HTML 的文档。
任何人都可以帮助我吗?谢谢!
$("#unique").html( function(i, oldtext){ return oldtext.replace("(","<br> ("); });
小提琴