以下是引用片段:
$(function() { $("#idTable .btnDetailCar").click(function() { $.getJSON("Handler1.ashx?Action=SearchBusLine_CarList&BusLineID=" + $(this).attr("id") + "&ran=" + Math.random(), function(data) { if (data.length > 0) { var js = ""; for (var i = 0; i < data.length; i++) { js += data[i].CarNO + " (" + data[i].Affiliation + ") "; ,; &nbs,p; } $("#iddiv_detail").html(js); } })
})
}) $(function() { if (getCookie("CookieIdentity") == "Driver") { $("#idTable tr").each(function() { $(this).find("th").eq(6).addClass("th_right");
$(this).find("th").eq(7).remove(); $(this).find("th").eq(7).remove(); $(this).find("th").eq(7).remove(); $(this).find("th").eq(7).remove();
$(this).find("td").eq(6).addClass("td_right"); $(this).find("td").eq(7).remove(); $(this).find("td").eq(7).remove(); $(this).find("td").eq(7).remove(); $(this).find("td").eq(7).remove();
}) } }) $(function() { $("#idTable .btnDelete").click(function() { var _r = confirm("确定删除该线路吗?"); var CommandID = $(this).attr("id"); if (_r == true) { $.get("Handler1.ashx", { Action: "PublicDeleteMethod", CommandID: CommandID, Command: "BusLineInfo" }, function(data, textStatus) { if (data != "0") { alert("删除成功!"); location.reload(); } else { alert("该线路存在其他信息,不能删除!"); }
|