centering text in column
th.dt-center, td.dt-center
change table header color using bootstrap
thead th
tbody td
change select default color
::selection
::-moz-selection
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus
獲取當前時間和日期:
var currentdate = new date();
var datetime = "last sync: " + currentdate.getdate() + "/"
+ (currentdate.getmonth()+1) + "/"
+ currentdate.getfullyear() + " @ "
+ currentdate.gethours() + ":"
+ currentdate.getminutes() + ":"
+ currentdate.getseconds();
function getdatetime()
if(day.tostring().length == 1)
if(hour.tostring().length == 1)
if(minute.tostring().length == 1)
if(second.tostring().length == 1)
var datetime = year+'/'+month+'/'+day+' '+hour+':'+minute+':'+second;
return datetime;
}jquery的live()方法已經被廢除,使用on(event, handler())方法替換
$("#curpage").live('change',function());
解決第乙個option的change事件無法觸發的問題
給設定乙個option,然後給該option設定成預設選擇selected,然後把它隱藏,具體如下:
預設選擇
CppUnit 遇到的問題和解決方法
cppunit是乙個很方便的unit test工具,這幾天學習cppunit中遇到兩個小問題,可能會讓新手很煩惱,在這裡提供解決的方法。1.在使用vs2003以上版本的visual studio時,build project testpluginrunner會失敗,出現如下的error 這是因為cp...
實習碰到的問題,和解決方法
1 a you print n a print n a 原因 第乙個是輸出兩個字元,python中兩個字元間自動存在乙個空格 第二個是成為了乙個字元,所有沒有空格 解決方法 print n rpg sep 2 找出列表出重複的元素 3 刪除目錄及子檔案 import shutil shutil.rm...
死鎖問題和解決方法 lock 函式
死鎖,兩個鎖 兩個互斥量 被兩個執行緒按亂序使用導致死鎖,跟解鎖順序無關 死鎖的解決辦法一 保證兩個互斥量上鎖的順序一致就不會死鎖。解決方法二 std lock 函式,一次鎖住兩個或兩個以上的互斥量 至少兩個,多了不限,1個不行 要麼兩個互斥量都鎖住,要麼兩個互斥量都沒鎖住。如果只鎖了乙個,另外乙個...