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 .load 从另一个页面获取 div。但是,当我单击该链接时,其他页面的 div 仅显示一瞬间,而不是恢复到前一页的内容。
$(document).ready(function(){ $("#contact").click(function(){ $("#boxcontainer").load("contact.html #contBox"); }); });
您可能需要防止发生默认行为:
$(document).ready(function(){ $("#contact").click(function(e){ e.preventDefault(); $("#boxcontainer").load("contact.html #contBox"); }); });