当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery UI Button option()用法及代码示例


jQuery UI 包含使用 HTMLCSSjQuery 实现的 GUI 小部件、视觉效果和主题。 jQuery UI 非常适合为网页构建 UI 接口。

jQuery UI 按钮 option() 方法用于设置或返回当前与指定元素关联的值。

用法:

  • 选项(选项名称):返回当前与指定 optionName 关联的值。
var isDisabled = $(".selector").button("option", "disabled");
  • option():它返回包含表示当前按钮选项哈希的键/值对的对象。
var options = $( ".selector" ).button( "option" );
  • 选项(选项名称,值):它设置与指定关联的按钮选项的值选项名称.
$( ".selector" ).button( "option", "disabled", true );
  • 选项(选项):它为按钮元素设置一个或多个选项。
$( ".selector" ).button( "option", { disabled: true } );

CDN 链接:首先,添加项目所需的 jQuery UI 脚本。

<link rel=”stylesheet” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery-1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

例子:下面的代码演示了button()jQuery UI 的方法。

HTML


<!doctype html> 
<html lang="en"> 
  
<head> 
    <meta charset="utf-8"> 
    <link rel="stylesheet" href= 
"//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"> 
    <script src= 
"//code.jquery.com/jquery-1.12.4.js"></script> 
    <script src= 
"//code.jquery.com/ui/1.12.1/jquery-ui.js"> 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1> 
  
        <h3>jQuery UI Button option() Method</h3> 
  
        <button>GFG Button</button> 
        <br><br> 
  
        <input type="button" id="divID" 
               style="padding: 5px 15px;" 
               value="Set option() Method Value"> 
    </center> 
  
    <script> 
        $(document).ready(function () { 
            $("button").button(); 
  
            $("#divID").on('click', function () { 
                $("button").button("option", "disabled", true); 
            }); 
        }); 
    </script> 
</body> 
</html>

输出:

参考: https://api.jqueryui.com/button/#method-option



相关用法


注:本文由纯净天空筛选整理自ppatelkap大神的英文原创作品 jQuery UI Button option() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。