在ajax调用后访问父页面上的函数的最佳方法是什么?我想避免多次加载相同的功能。
的index.jsp
<script type="text/javascript">
$(document).ready(function () {
$("#header").load('header.jsp');
});
function user() {
alert('user function');
}
</script>
header.jsp中
user();