我只希望新页面显示在当前页面的iframe中,而不是加载整个新页面。

这是我的代码:

function salabim(id){
    var gotoo;

    var objid = document.getElementById("pgMaster");

    new Effect.Shake(id);
    return false;

    gotoo=id+".html";
    objid.src=gotoo;
    location.href(gotoo);
}


这不适用于任何浏览器。我究竟做错了什么?

最佳答案

return false;移到末尾,然后使用location.href像这样:

location.href = gotoo;

09-25 16:35