0

我的 sql javascript 有这个功能

PATH="http://localhost/dhodia/";    
try{
                var tags=url.replace(PATH,"");
                var spl=tags.split("/");
                if(spl[0]=="i"){
                    if(spl.length>=2 && spl[1]=="hdd"){

                    }
                    addtoopen($("#"+spl[1]+"opn").attr("jso"));
                    menu_action(spl[1],url)   
                }
            }catch(err){
                var  txt="There was an error on this page.\n\n";
                txt+="Error description: " + err.message + "\n\n";
                txt+="Click OK to continue.\n\n";
                alert(txt);
            }

我发现如果我将 url 用作“http://localhost/dhodia/i/hdd”它会替换,但如果我使用“http://localhost/dhodia/i/hdd/tarun”它会在替换语句中出现问题没有做替换

我想跟踪为什么它不在这一行进行替换

编辑

我在函数中使用它,如下所示

function hstppst(url){
    config.pre=url;
    if(url==PATH || url==PATH+"i/dashboard"){
        $E("#"+current.open).hide();
        unfixbox()
        $E("#dashboard").show();
        addtoopen(dsjsn);
        document.title="My DashBoard";
        current.open="dashboard";
    }else{
        var tags=url.replace(PATH,"");
        var spl=tags.split("/");
        if(spl[0]=="i"){
            if(spl.length>=2 && spl[1]=="hdd"){

            }
            addtoopen($("#"+spl[1]+"opn").attr("jso"));
            menu_action(spl[1],url)   
        }



    }     
}

这个函数在 window.onpopstate变化时调用

在 onpopstate 我将 url 传递给这个函数

问题是代码在之后没有执行var tags=url.replace(PATH,"");,因为如果发生任何错误,我在 onpopstate 函数中使用这个函数,并且我正在跟踪我得到的错误是什么。

4

1 回答 1

0

请看一下字符串对象的replace方法的用法: https ://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/replace

您错误地使用了替换。

于 2012-07-31T23:11:34.640 回答