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


jQWidgets jqxListBox dropAction属性用法及代码示例


jQWidgets 是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、优化、独立于平台且得到广泛支持的框架。 jqxListBox 用于说明 jQuery ListBox 小部件,其中包含可选元素列表。

dropAction 属性用于设置或返回降低每当指定项目出现时采取行动列表框被丢弃。它是 String 类型,默认值为‘default’。

其可能的值为:

  • default
  • copy
  • none

用法:

设置drop动作属性:

$("#jqxListBox").jqxListBox({dropAction:'copy'});  

为了得到drop动作属性:

var dropAction = $('#jqxListBox').jqxListBox('dropAction');  

链接文件:下载jQWidgets从链接。在 HTML 文件中,找到下载文件夹中的脚本文件。

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script>

下面的示例说明了 jQWidgets 中的 jqxListBox dropAction 属性。

例子:

HTML


<!DOCTYPE html> 
<html> 
  <head> 
    <link rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css" 
          type="text/css" /> 
    <script type="text/javascript"
            src="scripts/jquery-1.11.1.min.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxbuttons.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxscrollbar.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxlistbox.js"> 
    </script> 
  </head> 
  <body> 
    <center> 
      <h1 style="color: green;"> 
        GeeksforGeeks 
      </h1> 
  
      <h3> 
        jQWidgets jqxListBox  
        dropAction Property 
      </h3> 
  
      <div id="jqxLB"></div> 
      <br /> 
      <input type="button" id="jqxBtn" 
             style="padding: 5px 20px;" 
             value="Dropping Action" /> 
      <div id="log"></div> 
    </center> 
  
    <script type="text/javascript"> 
      $(document).ready(function () { 
        var data =  
            ["CS", "CSS", "C++", "Java", "Scala"]; 
  
        $("#jqxLB").jqxListBox({ 
          source: data, 
          width: "210px", 
          height: "100px", 
          allowDrag: true, 
          allowDrop: true, 
          dropAction:'copy' 
        }); 
  
        $("#jqxBtn").on("click", function () { 
          var dA = $("#jqxLB").jqxListBox("dropAction"); 
          $("#log").text(dA); 
        }); 
      }); 
    </script> 
  </body> 
</html>

输出:

参考: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxlistbox/jquery-listbox-api.htm



相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 jQWidgets jqxListBox dropAction Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。