如何使用Javascript更改链接

时间:2014-10-30 01:18:17

标签: javascript html

我想将网址链接从http://example.appspot.com/_edit/123更改为http://example.appspot.com/123

我如何用JS做到这一点?

<a id = "edit" href="_edit">edit </a>  
    <script>
        var e = document.getElementById("edit");
        var url = document.URL;

        //if edit inside the url
        if (url.indexOf("_edit")> -1){
            e.innerHTML="View Page";



        }
    </script>

0 个答案:

没有答案