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.
我对javascript很陌生,所以我可能忽略了一些简单的东西。我在 jsfiddle 上设置了以下内容:链接到我的示例
代码如下所示:
var wishList = $('#wishList').html(); wishList = wishList.replace(/,/g, '<br/>'); $('#wishList').html(wishList);
这是我希望脚本在其上运行的实时页面的链接:脚本放置在文档末尾
非常感谢任何建议。
它失败了,因为您在页面上还有其他错误,并且它在 JavaScript 代码到达您之前停止执行。在调试窗口中检查您的页面(Chrome 和 IE 上的 F12)