点击同一个按钮升序降序

不完善
html

产品名称
$("#nameproduct").click(function() { if ($(this).hasClass("identification")) { $("#field").val("product_name"); $("#sort").val("DESC"); init(); $(this).removeClass("identification") } else { $("#field").val("product_name"); $("#sort").val("ASC"); init(); $(this).addClass("identification") } } )
order by ${field} ${sort} // 注意升序降序不用#

你可能感兴趣的:(常用工具类)