<html><head> <script src="jquery-easyui/jquery.min.js"></script> <script src="jquery-easyui/jquery.easyui.min.js"></script> <script src="jquery-easyui/easyloader.js"></script> <script src="jquery-easyui/locale/easyui-lang-zh_CN.js"></script> <link rel="stylesheet" type="text/css" href="jquery-easyui/themes/default/easyui.css"> <link rel="stylesheet" type="text/css" href="jquery-easyui/themes/icon.css" /></head><body><script> $(function (){ $("#btn").linkbutton({ plain:false, text:'xixihaha' }) //點擊禁用,完成禁用方法 $("#jin").click(function (){ $("#btn").linkbutton('disable') }) //點擊啟用,完成啟用方法 $("#qi").click(function (){ $("#btn").linkbutton('enable') }) })</script> <a href="#" id="btn" iconCls="icon-search">easyui</a> <a href="#" id="jin" class="easyui-linkbutton" >禁用</a> <a href="#" id="qi" class="easyui-linkbutton">啟用</a> <!-- linkbutton的屬性 id:分配給該組件的ID。 disabled:設定為true將禁用按鈕。 plain:為true時不顯示邊框浮上去會顯示邊框,相反就是正常的樣式,預設是false text:按鈕上顯示的文字。 iconCls:用來在左邊顯示一個16x16大小表徵圖的css類。 linkbutton的方法 disable:禁用按鈕。 enable:啟用按鈕。 --></body></html>