我应该使用哪种代码,以便jQuery在页面上查找每个YYYY-MM-DD格式(纯文本)字符串,并用DD-MM-YYYY替换它?
非常感谢!
答案 0 :(得分:1)
这可能有效:
$(document.body).contents().each(function(i,e) {
$(e).text(function(i,text) {
return text.replace(/(\d+)-(\d+)-(\d+)/g, function($full, $year, $month, $day) {
return [$day, $month, $year].join('-');
});
});
});