博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery easyui官方文档翻译 - 基础总览
阅读量:6693 次
发布时间:2019-06-25

本文共 1832 字,大约阅读时间需要 6 分钟。

  hot3.png

jQuery easyui官方文档翻译web版:

Documentation

Each component of easyui has properties, methods and events. Users can extend them easily.

每个easyui组件都有特性(property)、方法(method)和事件(event),用户可以很容易地扩展它们。

属性 Properties

The properties is defined in jQuery.fn.{plugin}.defaults. For example, the dialog's properties is defined in jQuery.fn.dialog.defaults.

属性在jQuery.fn.{plugin}.defaults里定义。例如, dialog的特性在jQuery.fn.dialog.defaults里定义。

事件 Events

The events(callback functions) is defined in jQuery.fn.{plugin}.defaults also.

事件(回调函数)也在jQuery.fn.{plugin}.defaults里定义。

方法 Methods

The calling method syntax: $('selector').plugin('method', parameter);

Where:

  • selector is the jquery object selector.
  • plugin is the plugin name.
  • method is the existing method corresponding to the plugin.
  • parameter is the parameter object, can be a object, string, ...

调用方法的语法:$('selector').plugin('method', parameter);

其中:

  • selector jquery对象选择器.
  • plugin easyui组件名称.
  • method 组件中的方法.
  • parameter 参数, 可以是object, string, ...

The methods is defined in jQuery.fn.{plugin}.methods. Each method has two parameters: jq and param. The first parameter 'jq' is required, which refers to that jQuery object. The second parameter 'param' refers to the really parameter that pass through the method. For example, to extend a method named 'mymove' for the dialog component, the code looks like this:

方法在jQuery.fn.{plugin}.methods里定义。每个方法有两个参数:jq和param。第一个参数'jq'是必须的,它是指jQuery对象。第二个参数'param' 是指传递给方法的真正的参数。例如,给dialog组件扩展一个名叫'mymove' 的方法,代码看起来就像这样:

  1. $.extend($.fn.dialog.methods, {  
  2.     mymove: function(jq, newposition){  
  3.         return jq.each(function(){  
  4.             $(this).dialog('move', newposition);  
  5.         });  
  6.     }  
  7. });  

Now you can call 'mymove' method to move the dialog to specified position:

现在你可以调用'mymove'方法把dialog移动到一个指定的位置:

  1. $('#dd').dialog('mymove', {  
  2.     left: 200,  
  3.     top: 100  
  4. });  

转载于:https://my.oschina.net/noday/blog/50959

你可能感兴趣的文章
我的友情链接
查看>>
ASA防火墙的应用
查看>>
linux中telnet 带外管理服务器的设置
查看>>
用户登录认证
查看>>
Web版RSS阅读器(一)——dom4j读取xml(opml)文件
查看>>
百度UEditor编辑器ueditor.setContent总是报错
查看>>
属性化字符串问题集
查看>>
Windows 2012 下如何强制同步 AD SYSVOL
查看>>
Java AtomicInteger的用法
查看>>
利用公有云平台构建网站项目总结
查看>>
php 与 C# 之间的DES加解密
查看>>
NetApp DataONTAP 集群模式 学习笔记2
查看>>
网络营销的优势
查看>>
允许java运行不安全或不可信的应用程序
查看>>
Java为Hyperledger Fabric(超级账本)开发区块链链代码智能合约之环境部署
查看>>
思科三层网络设计公式
查看>>
Groovy基本类型与运算符
查看>>
rabbitmq java.util.concurrent.TimeoutException
查看>>
IPsec***
查看>>
sql语句优化的十二条建议
查看>>