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.
我正在尝试.html('')在我的组件中使用 jquery 删除一个对象。它几乎可以在浏览器中使用,但在 Safari 中不起作用。为什么会这样?
.html('')
如果你想从 DOM 中取出一个元素,使用remove(),不要使用.html("").
remove()
.html("")
如果要使元素为空,请使用empty().
empty()
另外,要回答您的问题,您的代码中可能存在一些错误,因为.html('')它可以在我的 Safari 上运行,并在此jsfiddle上进行了测试。