$(function () { $.fn.linkbutton.defaults.iconCls = 'icon-add'; $('#box').linkbutton({ //id : 'pox', //自定义ID //disabled : true, //是否禁用 //toggle : true, //模拟checked按钮效果 //selected : true, //默认被选中效果 //group : 'sex', //模拟radio效果 //plain : true, //没卵用 text : '文字', //修改按钮文字 //iconCls : 'icon-add', //添加图标 //iconAlign : 'right', //图标位置 }); $('#pox').linkbutton({ //id : 'pox', //disabled : true, //toggle : true, //group : 'sex', //iconCls : 'icon-mini-add', }); //console.log($('#box').linkbutton('options')); //$('#box').linkbutton('disable'); //默认禁用 //$('#box').linkbutton('enable'); $('#box').linkbutton('select'); //默认选中效果 $('#box').linkbutton('unselect'); });