- Ext.js 教程
- Ext.js - 主页
- Ext.js - 概述
- Ext.js - 环境设置
- Ext.js - 命名约定
- Ext.js - 架构
- Ext.js - 第一个程序
- Ext.js - 类系统
- Ext.js - 容器
- Ext.js - 布局
- Ext.js - 组件
- Ext.js - 拖放
- Ext.js - 主题
- Ext.js - 自定义事件和监听器
- Ext.js - 数据
- Ext.js - 字体
- Ext.js - 风格
- Ext.js - 绘图
- Ext.js - 本地化
- Ext.js - 辅助功能
- Ext.js - 调试代码
- Ext.js - 方法
- Ext.js 有用资源
- Ext.js - 问题与解答
- Ext.js - 快速指南
- Ext.js - 有用的资源
- Ext.js - 讨论
Ext.js - 方法
以下是一些在 Ext JS 中大量使用的内置函数。
外部是类
此类检查您正在使用的平台,无论是手机还是台式机、Mac 还是 Windows 操作系统。以下是与 Ext.is 类相关的方法。
先生编号 | 方法与说明 |
---|---|
1 | 外部平台 此函数返回此版本可用的平台。 例如,当您运行以下函数时,它会返回类似以下内容 - [Object { property = "platform", regex = RegExp, identity = "iPhone"}, Object { property = "platform", regex = RegExp, identity = "iPod"}, Object { property = "userAgent", regex = RegExp, identity = "iPad"}, Object { property = "userAgent", regex = RegExp, identity = "Blackberry"}, Object { property = "userAgent", regex = RegExp, identity = "Android"}, Object { property = "platform", regex = RegExp, identity = "Mac"}, Object { property = "platform", regex = RegExp, identity = "Windows"}, Object { property = "platform", regex = RegExp, identity = "Linux"}] |
2 | Ext.is.Android 如果您使用的是 Android 操作系统,该函数将返回 true,否则返回 false。 |
3 | 外部即桌面 如果您使用应用程序的桌面,则此函数将返回 true,否则返回 false。 |
4 | 分机是电话 如果您使用的是手机,此函数将返回 true,否则返回 false。 |
5 | 分机是iPhone 如果您使用 iPhone,此函数将返回 true,否则返回 false。 |
6 | 外接iPod 如果您使用的是 iPod,此函数将返回 true,否则返回 false。 |
7 | 分机是iPad 如果您使用的是 iPad,此函数将返回 true,否则返回 false。 |
8 | 外部是Windows 如果您使用的是 Windows 操作系统,该函数将返回 true,否则返回 false。 |
9 | Ext.is.Linux 如果您使用的是 Linux 操作系统,该函数将返回 true,否则返回 false。 |
10 | Ext.is.黑莓 如果您使用的是黑莓,此函数将返回 true,否则返回 false。 |
11 | Ext.is.Mac 如果您使用的是 Mac 操作系统,该函数将返回 true,否则返回 false。 |
扩展支持类
顾名思义,此类提供当前浏览器/设备环境是否支持该功能的信息。
先生编号 | 方法与说明 |
---|---|
1 | Ext.supports.History 它检查设备是否支持 HTML 5 历史记录作为 window.history 。如果设备支持历史记录,则返回true,否则返回 false 。 |
2 | Ext.supports.GeoLocation 它检查设备是否支持地理定位方法。它在内部检查 navigator.geolocation 方法。 |
3 | Ext.supports.Svg 它检查设备是否支持 HTML 5 功能可缩放矢量图形 (svg) 方法。它在内部检查 doc.createElementNS && !!doc.createElementNS( "http:/" + "/www.w3.org/2000/svg", "svg").createSVGRect。 |
4 | Ext.supports.Canvas 它检查设备是否支持 HTML 5 功能画布绘制方法。它在内部检查 doc.createElement('canvas').getContext 并根据此方法的输出返回一个值。 |
5 | 扩展支持范围 它检查浏览器是否支持 document.createRange 方法。 |
Ext.String类
Ext.String 类有多种处理字符串数据的方法。最常用的方法有encoding、decode、trim、toggle、urlAppend等。
编码解码函数- 这些是 Ext.String 类中可用于编码和解码 HTML 值的函数。
先生编号 | 方法与说明 |
---|---|
1 | Ext.String.htmlEncode 该函数用于对 html 值进行编码以使其可解析。 示例- Ext.String.htmlEncode("< p > Hello World < /p >"); Output - "< p > Hello World < /p >". |
2 | Ext.String.htmlDecode 该函数用于解码编码的 html 值。 示例- Ext.String.htmlDecode("< p > Hello World < /p >"); Output - "< p > Hello World < /p >" |
3 | 外部字符串修剪 该函数的作用是修剪字符串中不需要的空格。 Ext.String.trim(' hello '); Output – "hello" |
4 | Ext.String.urlAppend 此方法用于在 URL 字符串中附加一个值。 示例- Ext.String.urlAppend('https://www.google.com' , 'hello'); Output - "https://www.google.com?hello" Ext.String.urlAppend('https://www.google.com?index=1' , 'hello'); Output – "https://www.google.com?index=1&hello" |
5 | Ext.String.toggle 此功能用于在两个不同值之间切换值。 示例- var toggleString = 'ASC' toggleString = Ext.String.toggle(a, 'ASC', 'DESC'); Output – DESC as toggleString had value ASC. Now again, if we print the same we will get toggleString = “ASC” this time, as it had value 'DESC'. It is similar to ternary operator toggleString = ((toggleString =='ASC')? 'DESC' : 'ASC' ); |
其他方法
先生编号 | 方法与说明 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Ext.userAgent() 该函数提供有关浏览器 userAgent 的信息。UserAgent是向Web服务器识别浏览器和操作系统的。 示例- 如果您在 Mozilla 中工作,它会返回类似以下内容的内容:“mozilla/5.0 (windows nt 6.1; wow64; rv:43.0) gecko/20100101 firefox/43.0” |
||||||||||||||
2 | 版本相关功能 如果调用该函数与 IE 相关,则该函数返回当前使用的浏览器版本。在Firefox浏览器中,返回0。这些函数有Ext.firefoxVersion、Ext.ieVersion等。 示例- 如果您使用 Firefox 浏览器并调用 Ext.ieVersion 方法来获取 IE 版本,则它将返回 0。如果您在 IE 浏览器中使用相同的方法,那么它将返回您正在使用的版本,例如8、9 等 |
||||||||||||||
3 | Ext.getVersion() 该函数返回当前使用的 Ext JS 版本。 示例- 如果您调用 Ext.getVersion(),它会返回一个值数组,例如版本、短版本等。 Ext.getVersion().version 返回程序中使用的 Ext JS 当前版本,例如“4.2.2”。 |
||||||||||||||
4 | 浏览器相关功能 这些函数根据所使用的浏览器返回布尔值。这些方法是 Ext.isIE、Ext.isIE6、Ext.isFF06 和 Ext.isChrome。 示例- 如果您使用 Chrome 浏览器,则函数 Ext.isChrome 将全部返回 true,否则将返回 false。 |
||||||||||||||
5 | Ext.typeOf() 该函数返回变量的数据类型。 示例- var a = 5; var b = 'hello'; Ext.typeOf(a); Output – Number Ext.typeOf(b); Output - String |
||||||||||||||
6 | 数据类型相关方法- 这些函数根据变量的数据类型返回布尔值 示例- var a = ['a', 'bc']; var b = 'hello'; var c = 123; var emptyVariable; var definedVariable; function extraFunction(){return true;}
|