更改为其他网址。简单地逐个改变不同

时间:2014-01-11 23:36:02

标签: javascript jquery html

您只想更改我的网址。

如果我有“save.com/newdocumente.html”

我希望新表格是“save.com/#jhjghgggg”

它有效。

我想要一个显示生成链接的按钮。

和“mega.co.nz”网站一样

不知道从哪里开始

2 个答案:

答案 0 :(得分:1)

您可以将事件侦听器绑定到您的按钮,该按钮会侦听其上的点击事件并更改URL:

按钮

<input type="button" id="the-button" value="Generate Link" />
<!-- or whatever your button is -->

<强>的jQuery

$('#the-button').on('click', function(e) {
  location.href = 'http://the.new.location.here';
});

答案 1 :(得分:1)

按钮

<button id="the-button">"Generate Link" </button>

的javascript

document.getElementById('the-button').onclick=function(e){
    document.location.hash = '#newStash';
};