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


jQWidgets jqxFileUpload theme属性用法及代码示例


jQWidgets 是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、优化、独立于平台且得到广泛支持的框架。 jqxFileUpload 是一个小部件,可用于选择文件并将其上传到服务器。

主题属性用于设置或返回当前主题jqx文件上传小部件。它接受字符串类型值,默认值为“”。

用法:

  • 设置主题属性。
    $('Selector').jqxFileUpload({ theme : string});
  • 返回主题属性。
    var theme = $('Selector').jqxFileUpload('theme');

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

<link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.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/jqxfileupload.js”></script>

例子:下面的例子说明了jqx文件上传主题jQWidgets 中的属性。

HTML


<!DOCTYPE html> 
<html lang="en"> 
    
<head> 
    <link type="text/css" rel="Stylesheet" 
          href="jqwidgets/styles/jqx.base.css" /> 
    <script type="text/javascript" 
            src="scripts/jquery-1.11.1.min.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/jqxfileupload.js"> 
    </script> 
</head> 
    
<body> 
    <h1 style="color:green"> 
          GeeksforGeeks  
    </h1> 
    
    <h3>jQWidgets jqxFileUpload theme property</h3> 
    
    <div id="gfg"> </div> 
    
      <script type="text/javascript"> 
        
        $(document).ready(function () { 
            $('#gfg').jqxFileUpload({  
                theme: 'energyblue', 
                width: 300, 
                uploadUrl: 'upload.php', 
            }); 
        }); 
    </script> 
</body> 
</html>

输出:

参考:https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxfileupload/jquery-file-upload-api.htm



相关用法


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