jquery获取链接地址和跳转详解(推荐)

懂得感恩,是收获幸福的源泉。懂得感恩,你会发现原来自己周围的一切都是那样的美好。

一、获取地址栏参数的方法

获取地址栏参数的方法

<script type="text/javascript">
(function ($) {
  $.getUrlParam = function (name) {
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
    var r = window.location.search.substr(1).match(reg);
    if (r != null) return unescape(r[2]); return null;
  }
})(jQuery);
$(function () {
  alert(window.location.href);
  alert($.getUrlParam('page'));
})
</script>

获取href连接:

$(document).ready(function(){ 
 $("button").click(function(){ 
  alert($("#w3s").attr("href")); 
 }); 
});

二、跳转:

1.在原来的窗体中直接跳转用

window.location.rel="nofollow noopener noreferrer" href="你所要跳转的页面" rel="external nofollow" ;

2、在新窗体中打开页面用:

window.open('你所要跳转的页面');
window.history.back(-1);返回上一页

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助~如果有疑问大家可以留言交流,谢谢大家对的支持!

您可能有感兴趣的文章
JS获取鼠标点击时的位置

vue、nginx部署后刷新报404错误的解决方法

electron-builder配置项

VUE聊天页面自动滚动到底部

VUE CTRL+ENTER换行,ENTER发送消息