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 来“扫描”html 并使用 div 将 HTML 中的任何表格包装起来?
谢谢
你可以使用包装
$('table').wrap('<div></div>');
是的...
$(function() { $("table").wrap("<div />"); });
.wrap()有关...的更多信息,请参见此处
.wrap()
http://api.jquery.com/wrap/