Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在从 jQuery 1.7.3 更新到 jQuery 1.9.0 时遇到了一点问题:
http://jsfiddle.net/xsJAd/
似乎它不喜欢接受多行 html。如果取消注释前几行,您将在控制台中看到错误。这是在 1.9 中故意这样做还是这是一个错误,我真的不想.replace()在我的代码中到处调用。
.replace()
您需要从开头修剪空格html()才能使其正常工作:
html()
console.log($($.trim($('#tpl-tableList').html())));
示例小提琴