我正在使用这种方法来查找和替换一段文本,但不确定它为什么不起作用?当我使用 console.log 时,我可以看到我想要替换的正确内容,但最终结果不起作用:
(function($) {
$(document).ready( function() {
var theContent = $(".transaction-results p").last();
console.log(theContent.html());
theContent.html().replace(/Total:/, 'Total without shipping:');
});
})(jQuery);
有什么想法吗?
谢谢!