我正在开发一个Web应用程序,并且正在使用jQuery。我想知道href
变量是否使用jQuery查找URL。我该怎么做?
这是jQuery代码:
jQuery(function(){
jQuery('#sections a, #sections_mobile a').click(function(){
var href = jQuery(this).attr('href');
alert(href);
});
});
答案 0 :(得分:1)
尝试
var href = /^(http:|https:)/.test(jQuery(this).attr('href'));
答案 1 :(得分:0)
试试这个
jQuery('#sections a, #sections_mobile a').click(function(){
var href = jQuery(this).attr('href');
if( href.match(/http/).length )
alert("Is a url");
else
alert("Not url)
});