我用以下代码将洞网站上的“Holla”替换为突出显示的“Holla Hee”:
$("td").each(function () {
if ($(this).children().length == 0) {
$(this).html($(this).html().replace('Holla','<span class="txtWarn">Holla Hee</span>'));
}
});
但http://validator.w3.org给出了错误:
错误第 205 行,第 79 列:文档类型在此处不允许元素“跨度”
…s).html().replace('Holla','<span class="txtWarn">Holla Hee</span>'));
还有其他方法吗?(无法将脚本保存到外部 js. 文件中)