DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> JQuery中dataGrid設置行的高度示例代碼
JQuery中dataGrid設置行的高度示例代碼
編輯:JQuery特效代碼     
. 代碼如下:
columns:[[
{field:"activitycontent",title:'活動內容',width:fixWidth(0.18),align:"center",halign:"center",
formatter:function(value,rec){
if(value.indexOf("src")<0){
if(rec.activitycontent.length>Math.ceil(document.documentElement.clientWidth * 0.18)/11.5)
return rec.activitycontent.substring(0,Math.ceil(document.documentElement.clientWidth * 0.18/11.5))+'..';
else
return rec.activitycontent.substring(0,Math.ceil(document.documentElement.clientWidth * 0.18/11.5));
}
}
},
{..}
]]

注意其中幾個相同的地方 , activitycontent和0.18 要一樣 參數比例11.5 大家可以自己測試調整,我這裡用於對漢字取整
如果文字內容大於那個長度 結果為
測試長度8 測試長度74 測試..
否則就是
測試長度8 測試長度74 測試
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved