我想将网址链接从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>