我正在使用数据表来显示一些价目表,我按字母过滤价格。我遇到的问题是,当我单击它会将其传递给处理文件(bronze.fnReloadAjax)但不是的字母时。相反,我得到了所有记录,因为 href 是空的
$(".whitelinks a").click(function(event) {
event.preventDefault();
$("a").removeClass("active");
$(this).addClass("active");
link = $(this).attr("href");
href = link.substring(1);
bronze.fnReloadAjax('price_list/plan_bronze.php?selection='+href);
});