私のコードはこのようなものです
$("a[href]").each(function () {
if ($(this).attr("href").toLowerCase().indexOf("javascript:") != 0 && $(this).attr("class") != "to-top")
{
$(this).attr("href", new URI($(this).attr("href")).removeQuery("at").addQuery("at", $.cookies.get('ACCT_TYPE') != null ? $.cookies.get('ACCT_TYPE') : "erhverv"));
}
});
今、私はこの状態から特定のリンクを避けたいと思っています。「a」リンクは「税スイッチ」クラスの下にあります。これを達成するための近道はありますか?