使用 jQuery/AJAX 重新加载 Div 中的内容
要求: 单击按钮时重新加载特定 div 的内容,无需刷新整个页面。
代码片段:
考虑以下代码:
<code class="html"><div id="step1Content"> <div id="list"> <!-- Content to be reloaded --> </div> </div> <input type="button" id="getCameraSerialNumbers" value="Capture Again" /></code>
<code class="javascript">$("#getCameraSerialNumbers").click(function() { $("#list").load(location.href + " #list"); });</code>
此代码使用 jQuery 的 load () 方法重新加载 #list div 的内容。 location.href 表示当前页面的 URL,添加“#list”表示仅加载 #list div 中包含的页面部分。
注意: URL 和第二个“#”之间的空格至关重要。如果没有它,整个页面将被加载到#list div中。
详细说明:
这种方式可以让你动态更新网页上特定div的内容,而无需刷新整个页面,提供更好的用户体验并保持当前页面状态。
以上是如何使用 jQuery/AJAX 动态重新加载特定 Div 的内容?的详细内容。更多信息请关注PHP中文网其他相关文章!