找到撇号并替换为其他字符
我遇到了一个与撇号有关的问题。我如何找到所有撇号并将其替换为其他字符。代码如下。
脚本
jQuery('.note').each(function() {
var final = jQuery(this).text();
jQuery(this).html('<div class="solutionnotes">'+final+'</div>');
var htmlElement = jQuery('.solutionnotes').text();
var e = htmlElement;
alert(e);
e.replace(/\&apos;/g, "acute;");
});
HTML 代码
<body>
<div class="note">&apos; &apos; &apos; Test 1 &apos; &apos;</div>
<div class="note">&apos; &apos; &apos; Test 1 &apos; &apos;</div>
<div class="note">&apos; &apos; &apos; Test 1 &apos; &apos;</div>
</body>
I am stuck with a problem, which has got to do with Apostrophe's. How do i find and replace all apostrophe's with some other character. The code is as follows.
Script
jQuery('.note').each(function() {
var final = jQuery(this).text();
jQuery(this).html('<div class="solutionnotes">'+final+'</div>');
var htmlElement = jQuery('.solutionnotes').text();
var e = htmlElement;
alert(e);
e.replace(/\'/g, "acute;");
});
HTML Code
<body>
<div class="note">' ' ' Test 1 ' '</div>
<div class="note">' ' ' Test 1 ' '</div>
<div class="note">' ' ' Test 1 ' '</div>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: