1.f12调试记得写debugger network 选中自己接口可以看入参返参
2.console.log(xx);打印东西到控制台
3.;隐藏文本框用于传递存储数据
4.value="待定" 用于给文本框默认值;
5.$('#id').val(""); 用于赋值;
6.$('#id').val();用于获取值;
7.$("#f_test_data4").blur(function(){
}); 用于鼠标失焦事件;
8.easyui的combobox textField/valueField 两个参数一个是往后台传递一个是页面下拉框展示
9.easyui 获取选中行 var rows = $("#id").datagrid("getSelections"); rows.length 获取选中行数 rows[0].字段名 获取字段
10.var rows = $("#questionDeal").datagrid("getChecked");
11. $.ajax({
url: xxx,
type: "get",
async: false,
data: { name: unitName, property: property, id: id, type: type },
dataType: "json",
success: function (data){
console.log(data);
}
12.easyui datagrid onSelect:function(rowIndex,rowData){
rowData.字段名
}
入参queryParams: {
type: type,
id: id
},
13. $("#xxx").attr("style","display:none;"); 让按钮隐藏的jq
14. $('#id').show(); div的显示与隐藏
$('#id').hide();