0

我正在尝试使用 .load() 加载 div。单击菜单元素时会触发此功能:

function newPage(p_id){
    var id = p_id;

    $("#div").load("content.php?id=" + id);

    doSomething();
    doAnotherThing();
}

content.php 工作正常。但是doSometing(); 没有发生。下次我单击菜单元素时,doSomething(); 和doAnotherThing(); 被触发,然后函数从头开始并在doSomething();之前再次停止 当然,我打算在每次点击时从头到尾执行该功能。

有人可以帮忙吗?

4

1 回答 1

0

试试看:

$("#div").load("content.php?id=" + id,function(){doSomething(); doAnotherThing();});
于 2013-06-22T13:15:59.553 回答