课程
/前端开发
/jQuery
/jQuery基础课程
为什么$(".green").replaceWith($html);能正常显示
$(".green").replaceAll($html);却显示为空呢
2015-02-05
源自:jQuery基础课程 5-9
正在回答
replacrAll是替换内容在前,被替换元素在后。
replaceWith是被替换元素在前,替换内容在后。
如果要用replaceAll的话,应该$($html).replaceAll(".green");这么写。
举报
加入课程学习,有效提高前端开发速度