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.
我有一个 contains.jsp,因为当我选择特定选项卡时我使用了 jquery 选项卡,然后我想加载一个 jsp 文件,特别是 contains.jsp 中的 div,该文件必须位于选项卡面板之外。
任何人都可以帮我做到这一点。
使用下面的代码将 jsp 的内容加载到 id 为 mydiv 的特定 div 中,当单击 id 为 tabToClick 的选项卡时:
$('#tabToClick').on('click', function() { $('#mydiv').load('mypage.jsp'); return false; });