⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 slider.js

📁 当前比较流行的,漂亮的JS框架,这里面用到的API文档
💻 JS
字号:
/*
 * Ext JS Library 2.0.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){    Ext.QuickTips.init();    // turn on validation errors beside the field globally    Ext.form.Field.prototype.msgTarget = 'side';    var bd = Ext.getBody();    /*     * ================  Simple form  =======================     */    bd.createChild({tag: 'h2', html: 'Form 1 - Very Simple'});    var simple = new Ext.FormPanel({        labelWidth: 75, // label settings here cascade unless overridden        url:'echo.php',        frame:true,        title: 'Simple Form',        bodyStyle:'padding:5px 5px 0',        width: 350,        defaults: {width: 230},        defaultType: 'textfield',        items: [{                fieldLabel: 'First Name',                name: 'first',                allowBlank:true            },{                fieldLabel: 'Last Name',                name: 'last'            },{                fieldLabel: 'Company',                name: 'company'            }, {                fieldLabel: 'Email',                name: 'email',                vtype:'email'            }, new Ext.form.TimeField({                fieldLabel: 'Time',                name: 'time',                minValue: '8:00am',                maxValue: '6:00pm'            }),{				xtype:'sliderfield',				name:'slider1',				minValue:0,				maxValue:100,				fieldLabel:'Slider'			}        ],        buttons: [{			text: 'Save',handler:function() {				simple.getForm().submit({					success:function(form, action) {						alert('Success:\n' + action.response.responseText);					},					failure:function(form, action) {						alert('Failure: ' + action.failureType);					}				});		    }        },{            text: 'Cancel'        }]    });    simple.render(document.body);});

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -