文檔首頁(yè)>>telerik中文文檔>>禁用Butoon
禁用Butoon
立即下載Kendo UI for jQuery
從業(yè)務(wù)邏輯上講,應(yīng)用程序通常需要禁用或啟用某個(gè)按鈕。
您可以通過Button的enable屬性或通過具有disabled="disabled" HTML屬性的元素來(lái)初始化Button,將其初始狀態(tài)設(shè)為禁用。還可以在JavaScript中隨時(shí)禁用或啟用按鈕,方法是使用帶有布爾參數(shù)的enable()方法。
下面的示例演示如何啟用和禁用按鈕。
<button type="button" id="editButton">Edit</button> <script> $(function(){ var editButton = $("#editButton").kendoButton({ enable: false }).data("kendoButton"); // ... // Enable the button. editButton.enable(true); }); </script>