首页 > 代码库 > easyUI样式之easyui-switchbutton

easyUI样式之easyui-switchbutton

 

HTML文件

<tr>
     <th>是否发送短信:</th>
      <td>
       <input id="sendTxt" name="sendTxt" class="easyui-switchbutton" onText="是" offText="否" width="100px" checked="checked"/>
       </td>
</tr>

 

JS文件

初始化:
$("[switchbuttonName=‘sendTxt‘]").switchbutton("check");

 

传递值
var param = { sendTxt : $("[switchbuttonName=‘sendTxt‘]").switchbutton("options").checked, };

 

效果图:

技术分享

 

 技术分享

 

 

以上!!!

easyUI样式之easyui-switchbutton