WEB开发网
开发学院软件开发Java extjs学习笔记(一) 一些基础知识 阅读

extjs学习笔记(一) 一些基础知识

 2009-10-11 00:00:00 来源:WEB开发网   
核心提示: 然后是更改我们的daben.js文件了,改动之后的代码如下:1///<referencepath="vswd-ext_2.0.2.js"/>2/**//*3*作者:大笨4*日期:2009-10-105*版本:1.06*博客地址:http://yage.blogs.

然后是更改我们的daben.js文件了,改动之后的代码如下:

 1///<reference path="vswd-ext_2.0.2.js" />
 2/**//*
 3 *作者:大笨
 4 *日期:2009-10-10
 5 *版本:1.0
 6 *博客地址:http://yage.blogs.com
 7 */
 8
 9Ext.onReady(function() {
10    //Ext.MessageBox.alert("信息","Hello world");
11    /**//*Ext.MessageBox.confirm("comfirm","模拟js的comfirm对话框",function(btn){
12    alert("点击了"+btn+"按钮");
13    });*/
14    Ext.get("btn").on("click", function() {
15        var data = Ext.fly("txt").getValue();
16        if (data == "") {
17            Ext.Msg.alert("警告", "请输入字符串");
18        }
19        else {
20            Ext.Ajax.request({
21                url: "hello.aspx",
22                params: { data: data },
23                method: "POST",
24                success: function(response) {
25                    Ext.fly("div").update(response.responseText);
26                },
27                failure: function(response) {
28                    Ext.Msg.alert("错误", "请求失败,错误代码为:" + response.status);
29                }
30            });
31        }
32    });
33});

上一页  1 2 3 4 5 6  下一页

Tags:extjs 学习 笔记

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接