我很困惑我可以将子页面嵌入到父页面的 DIV 中,但我不能限制子页面在此类 DIV 中的任何操作。如果我按下属于子页面的按钮,它会将整个页面刷新到新页面。不部分更新。
我的HTML如下:
父页面:
< div id="container" >
< /div>
<script>
$("#container").load("/child-page/");
</script>
子页面:
< input type="button" name="Create"
value="Create"
onclick="$("#container").load("/child-page/")" />
如何只更新父页面的 DIV 而不刷新整个页面?
最好的问候,乔希