Jquery更改内容链接值

时间:2016-01-14 05:13:58

标签: javascript jquery html

嗨,我有一组div和下一个按钮。

<div class="check" id="a1"> ... </div>
<div class="check" id="a2"> ... </div>
<div class="check" id="a3"> ... </div>
 ...
<div class="check" id="an"> ... </div>
<a href="#some-div" id="next">Next</a>

这是我的jquery代码:

jQuery( "#next" ).click(function() {
 // filter function 
});

所以当我尝试链接地址栏时,值为http://myhost.com#some-div 是否可以将其更改为http://myhost.com#a2并更改#next href值?

3 个答案:

答案 0 :(得分:5)

&#13;
&#13;
jQuery( "#next" ).click(function() {
 // filter function 
   location.hash="a2";
   e.preventDefault();
});
&#13;
&#13;
&#13;

答案 1 :(得分:2)

jQuery( "#next" ).click(function(e) {
  e.preventDefault();
  location.hash = "a2"
});

答案 2 :(得分:0)

$("#next").click(function (e) {
           e.preventDefault();
           location.hash = "a2"
       });