1.checkbox是否選中 判斷 $(this).is(":checked") == true
$(".check").each(function()
});
賦值為選中狀態
if ($(obj).is(":checked")) else
2.判斷是否為空物件 json.stringify(r.data)!= "{}"
迴圈物件 for(var item in r.data){}
if(json.stringify(r.data)!= "{}")
}3.layer.open()方法
var index = layer.open(
,btn2: function(index, layero)
,cancel: function()
});4.獲取當前時間 格式為***x年xx月xx日 星期x xx:xx:xx
//獲取當前時間
function realtime()
if (minu < 10)
if (sec < 10)
var time = year + "年" + month + "月" + date + "日 " + week + " " + hour + ":" + minu + ":" + sec; //組合系統時間
$("#realtime").html(time); //顯示系統時間
}5.根據時間戳返回時間格式***x-xx-xx xx:xx:xx
function gettime(timestamp)
if (minu < 10)
if (sec < 10)
time = year + "-" + month + "-" + date + " " + hour + ":" + minu + ":" + sec;
return time;
}6.表單屬性 serialize()
7.獲取url引數 var device = (url('device') != null) ? url('?device') : '';
隨手記 知識點(1)
1 15 42 48.538 thread 1 debug o.s.b.f.s.disposablebeanadapter invoking destroy method close on bean with name sqlsession sqlsessiontemplate你不可以手動關閉。sq...
Hibernate 小知識點
今天比較忙沒怎麼寫 知識一些曉得知識或是經驗吧!1.lazy延遲載入 也可以說是需要的時候再區載入 場景 乙個類如person和address,person可以通過getaddress 來得到address的set集合.有乙個dao控制類operation.方法public person query...
dom 小知識點
1 classname屬性可設定或返回元素的 class 屬性。function getclass document.getelementbyid d1 classname bbb alert document.getelementbyid d1 classname 2 removechild 刪除...