博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
easyui 入门
阅读量:6829 次
发布时间:2019-06-26

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

http://www.cnblogs.com/tangge/p/3214496.html

1.页面引用.

jquery,easyui,主题easyui.css,图标ico.css,语言zh_CN.js

 

2.parser组件panel组件

 
 
style="width: 500px; height: 150px; padding: 10px; background: #fafafa;"
data-options="iconCls:'icon-save',closable:true,
collapsible:true,minimizable:true,maximizable:true">

panel content.

panel content.

 
 
 
无标题
 

 

3.Form表单的验证(validate)提交

隐藏行号 复制代码 ?index.html
  1.  
  2.  
  3.  
  4. var LoginAndRegDialog;
  5. var LoginInputForm;
  6. $(function () {
  7. //对话框dialog
  8. LoginAndRegDialog = $("#LoginAndRegDialog").dialog({
  9. closable: false,
  10. modal: true,
  11. buttons: [{
  12. text: '登录',
  13. iconCls: 'icon-ok',
  14. handler: function () {
  15. //***先验证(根据自己的需求)
  16. if (LoginInputForm.form('validate')) {
  17. //表单form提交
  18. LoginInputForm.submit();
  19. }
  20. }
  21.  
  22. }, {
  23. text: '取消',
  24. handler: function () {
  25. $('#LoginInputForm').form('clear');
  26. }
  27. }]
  28. });
  29.  
  30. //表单的提交要求
  31. LoginInputForm = $('#LoginInputForm').form({
  32. url: '/Login.ashx',
  33. onSubmit: function () {
  34. // do some check
  35. // return false to prevent submit;
  36. },
  37. success: function (data) {
  38. //alert(data);
  39. console.info(data);
  40. $.messager.show({
  41. title: '提示',
  42. msg: data
  43. })
  44. },
  45. });
  46.  
  47.  
  48.  
  49.  
  50.  
  51. })
  52.  
  53.  
  54.  
  55.  
  56.  
  57. 用户名:
  58.  
  59.  
  60.  
  61.  
  62. 密码:
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  

 

 

隐藏行号 复制代码 ?Login.ashx
  1. public void ProcessRequest(HttpContext context)
  2. {
  3. context.Response.ContentType = "text/html";
  4. string username = context.Request["name"];
  5. string password = context.Request["password"];
  6. context.Response.Write(username + "你好,你的密码是:" + password);
  7.  
  8. }

 

image

 

 

jQuery EasyUI 1.3 中文帮助手册

你可能感兴趣的文章
机器学习经典算法具体解释及Python实现--K近邻(KNN)算法
查看>>
OpenCV视频读取播放,视频转换为图片
查看>>
设计模式(四)简单工厂模式
查看>>
PHP高级教程-文件上传
查看>>
【Redis缓存机制】1.Redis介绍和使用场景
查看>>
oracle NVL与Coalesce的区别
查看>>
python datetime fromtimestamp_浸在苏打水里的玩偶_百度空间
查看>>
【转载】SIFT算法分析(草稿)
查看>>
仿Drinkspiration App的menu
查看>>
一周最新示例代码回顾 (6/11 - 6/17)
查看>>
Windows Server 2003 SP2(32位) 中文版 下载地址 光盘整合方法
查看>>
[转]Linux下阅读源代码:(g)vim+Taglist+ctags
查看>>
修改linux终端命令行颜色
查看>>
删除map、list集合元素总结
查看>>
搭建hadoop1.2集群
查看>>
autotools入门笔记(一)
查看>>
Imagex用法
查看>>
问题集
查看>>
ios实例开发精品文章推荐(7.23)
查看>>
php编译错误Note that the MySQL client library is not bundled anymore或者cannot find mysql header file...
查看>>