因此,在网站中是一个div,其中包含单击选项卡时加载的网站的另一部分。
因此,假设单击选项卡会加载名为“hive / index.php”的文件。当有人点击自动填充中的选项时,我只想重新加载hive / index.php并且仍然拥有页面的其余部分,而不是整个网页。我该怎么做?
答案 0 :(得分:2)
如果使用jQuery,
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$('#divID').load('hive/index.php'); //<- Use this on any event in which you want to refresh the content
</script>