在另一个页面上加载div的内容
你会从这个代码中看到它从哈希标签中加载内容URL。 反正只有从外部页面加载一个div元素。
$(function() { if(location.hash) $("#content_inload").load(location.hash.substring(1)); $("#nav a").click(function() { $("#content_inload").load(this.hash.substring(1)); }); });
所以像.substring(#inload_content(1))
但是这不起作用。
谢谢
你只需要在url之后添加一个jqueryselect器。
请参阅: http : //api.jquery.com/load/
直接来自API的示例:
$('#result').load('ajax/test.html #container');
那么它会从指定的url中加载#container元素。
是的,请参阅http://api.jquery.com/load/上的“加载页面片段”。;
简而言之,您可以在URL后添加select器。 例如:
$('#result').load('ajax/test.html #container');