| 12345678910111213141516171819202122232425262728 |
- $(function(){
- selectDw(1);
- });
- /**
- * 返回
- */
- function cancelHkyxcs() {
- loadHjkzYxcsList();
- }
- /**
- * 档位切换
- * @param id
- */
- function selectDw(id) {
- $(".dw").hide();
- $("#en > button").attr("disabled", "");
- $("#dw" + id).show();
- $("#en > button").eq(id - 1).attr("disabled", "disabled");
- }
- function editHjkzYxcs(id) {
- huimv.loadPage("hjkzRight", "editHjkzYxcs.htm", {
- "id" : id,
- });
- }
|