jQuery: If this HREF contains

前端 未结 6 1786
南笙
南笙 2021-01-30 20:51

Why can\'t I get this to work??

$(\"a\").each(function() {
    if ($(this[href$=\"?\"]).length()) {
        alert(\"Contains questionmark\");
    }
});
         


        
6条回答
  •  心在旅途
    2021-01-30 21:11

    Try this:

    $("a").each(function() {
        if ($('[href$="?"]', this).length()) {
            alert("Contains questionmark");
        }
    });
    

提交回复
热议问题