我遇到了一个问题,这与Apostrophe的问题有关。我如何找到并替换所有撇号与其他角色。代码如下。
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;");
});
<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>
答案 0 :(得分:0)
试试这个:
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.replace(/&apos;/g, "HELLO");
alert(e);
});