如何检查变量是否有url或id?

时间:2015-05-04 15:23:55

标签: jquery url

我正在开发一个Web应用程序,并且正在使用jQuery。我想知道href变量是否使用jQuery查找URL。我该怎么做?

这是jQuery代码:

jQuery(function(){
    jQuery('#sections a, #sections_mobile a').click(function(){
        var href = jQuery(this).attr('href');
        alert(href);                                                     
    });         
}); 

2 个答案:

答案 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)                                 
 });