前言

使用$.fn.form.defaults重写默认值对象下载该插件翻译源码

form提供了各种方法来操作执行表单字段,比如:ajax提交, load, clear等等。当提交表单的时候可以调用validate方法检查表单是否有效

源码

/**
* jQuery EasyUI 1.3.2
*
*翻译;qq 1364386878
*/
(function ($) {
//执行提交操作,该选项的参数是一个对象
function _submit(target, options) {
options = options || {};
var param = {};
if (options.onSubmit) {
if (options.onSubmit.call(target, param) == false) {
return;
}
}
var form = $(target);
if (options.url) {
form.attr("action", options.url);
}
var iframeid = "easyui_frame_" + (new Date().getTime());
var frame = $("<iframe id=" + iframeid + " name=" + iframeid + "></iframe>").attr("src",
window.ActiveXObject ? "javascript:false" : "about:blank").css(
{ position: "absolute", top: -1000, left: -1000 });
var t = form.attr("target"),
a = form.attr("action");
form.attr("target", iframeid);
var _8 = $();
try {
frame.appendTo("body");
frame.bind("load", cb);
for (var n in param) {
var f = $("<input type=\"hidden\" name=\"" + n + "\">").val(param[n]).appendTo(form);
_8 = _8.add(f);
}
form[0].submit();
}
finally {
form.attr("action", a);
t ? form.attr("target", t) : form.removeAttr("target");
_8.remove();
}
var checkCount = 10;
function cb() {
frame.unbind();
var body = $("#" + iframeid).contents().find("body");
var data = body.html();
if (data == "") {
if (--checkCount) {
setTimeout(cb, 100);
return;
}
return;
}
var ta = body.find(">textarea");
if (ta.length) {
data = ta.val();
} else {
var pre = body.find(">pre");
if (pre.length) {
data = pre.html();
}
}
if (options.success) {
options.success(data);
}
setTimeout(function () {
frame.unbind();
frame.remove();
}, 100);
};
};
//读取记录填充到表单中。数据参数可以是一个字符串或一个对象类型,如果是字符串则作为远程URL,否则作为本地记录
function _load(target, data) {
if (!$.data(target, "form")) {
$.data(target, "form", {
options: $.extend({},
$.fn.form.defaults)
});
}
var options = $.data(target, "form").options;
if (typeof data == "string") {
var param = {};
if (options.onBeforeLoad.call(target, param) == false) {
return;
}
$.ajax({
url: data,
data: param,
dataType: "json",
success: function (data) {
_load2(data);
},
error: function () {
options.onLoadError.apply(target, arguments);
}
});
} else {
_load2(data);
}
function _load2(data) {
var form = $(target);
for (var name in data) {
var val = data[name];
var rr = setChecked(name, val);
if (!rr.length) {
var f = form.find("input[numberboxName=\"" + name + "\"]");
if (f.length) {
f.numberbox("setValue", val);
} else {
$("input[name=\"" + name + "\"]", form).val(val);
$("textarea[name=\"" + name + "\"]", form).val(val);
$("select[name=\"" + name + "\"]", form).val(val);
}
}
setValue(name, val);
}
options.onLoadSuccess.call(target, data);
_validate(target);
};
//设置选中
function setChecked(name, val) {
var form = $(target);
var rr = $("input[name=\"" + name + "\"][type=radio], input[name=\"" + name + "\"][type=checkbox]", form);
$.fn.prop ? rr.prop("checked", false) : rr.attr("checked", false);
rr.each(function () {
var f = $(this);
if (f.val() == String(val)) {
$.fn.prop ? f.prop("checked", true) : f.attr("checked", true);
}
});
return rr;
};
//设置值
function setValue(name, val) {
var form = $(target);
var types = ["combobox", "combotree", "combogrid", "datetimebox", "datebox", "combo"];
var c = form.find("[comboName=\"" + name + "\"]");
if (c.length) {
for (var i = 0; i < types.length; i++) {
var type = types[i];
if (c.hasClass(type + "-f")) {
if (c[type]("options").multiple) {
c[type]("setValues", val);
} else {
c[type]("setValue", val);
}
return;
}
}
}
};
};
//清除表单数据
function _clear(target) {
$("input,select,textarea", target).each(function () {
var t = this.type,
tag = this.tagName.toLowerCase();
if (t == "text" || t == "hidden" || t == "password" || tag == "textarea") {
this.value = "";
} else {
if (t == "file") {
var file = $(this);
file.after(file.clone().val(""));
file.remove();
} else {
if (t == "checkbox" || t == "radio") {
this.checked = false;
} else {
if (tag == "select") {
this.selectedIndex = -1;
}
}
}
}
});
if ($.fn.combo) { $(".combo-f", target).combo("clear");
}
if ($.fn.combobox) {
$(".combobox-f", target).combobox("clear");
}
if ($.fn.combotree) {
$(".combotree-f", target).combotree("clear");
}
if ($.fn.combogrid) {
$(".combogrid-f", target).combogrid("clear");
}
_validate(target);
};
//重置表单数据
function _reset(target) {
target.reset();
var t = $(target); if ($.fn.combo) {
t.find(".combo-f").combo("reset");
}
if ($.fn.combobox) {
t.find(".combobox-f").combobox("reset");
}
if ($.fn.combotree) {
t.find(".combotree-f").combotree("reset");
}
if ($.fn.combogrid) {
t.find(".combogrid-f").combogrid("reset");
}
if ($.fn.spinner) {
t.find(".spinner-f").spinner("reset");
}
if ($.fn.timespinner) {
t.find(".timespinner-f").timespinner("reset");
}
if ($.fn.numberbox) {
t.find(".numberbox-f").numberbox("reset");
}
if ($.fn.numberspinner) {
t.find(".numberspinner-f").numberspinner("reset");
}
_validate(target);
};
//设置表单
function setForm(target) {
var options = $.data(target, "form").options;
var form = $(target);
form.unbind(".form").bind("submit.form", function () {
setTimeout(function () {
_submit(target, options);
}, 0);
return false;
});
};
//做表单字段验证,当所有字段都有效的时候返回true。该方法使用validatebox(验证框)插件
function _validate(target) {
if ($.fn.validatebox) {
var t = $(target);
t.find(".validatebox-text:not(:disabled)").validatebox("validate");
var valid = t.find(".validatebox-invalid");
valid.filter(":not(:disabled):first").focus();
return valid.length == 0;
}
return true;
};
//实例化form
$.fn.form = function (options, param) {
if (typeof options == "string") {
return $.fn.form.methods[options](this, param);
}
options = options || {};
return this.each(function () {
if (!$.data(this, "form")) {
$.data(this, "form", {
options: $.extend({},
$.fn.form.defaults, options)
});
}
setForm(this);
});
};
//方法
$.fn.form.methods = {
//执行提交操作,该选项的参数是一个对象
submit: function (jq, param) {
return jq.each(function () {
_submit(this, $.extend({}, $.fn.form.defaults, param || {}));
});
},
//读取记录填充到表单中。数据参数可以是一个字符串或一个对象类型,如果是字符串则作为远程URL,否则作为本地记录
load: function (jq, data) {
return jq.each(function () {
_load(this, data);
});
},
//清除表单数据
clear: function (jq) {
return jq.each(function () {
_clear(this);
});
},
//重置表单数据
reset: function (jq) {
return jq.each(function () {
_reset(this);
});
},
//表单字段验证,当所有字段都有效的时候返回true。该方法使用validatebox(验证框)插件
validate: function (jq) {
return _validate(jq[0]);
}
}; //form默认属性+事件
$.fn.form.defaults = {
url: null,//提交表单动作的URL地址
//在提交之前触发,返回false可以终止提交
onSubmit: function (param) {
return $(this).form("validate");
},
//在表单提交成功以后触发
success: function (data) {
},
//在请求加载数据之前触发。返回false可以停止该动作
onBeforeLoad: function (_30) {
},
//在表单数据加载完成后触发
onLoadSuccess: function (_31) {
},
//在表单数据加载出现错误的时候触发
onLoadError: function () {
}
};
})(jQuery);

示例代码

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic Form - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
<link rel="stylesheet" type="text/css" href="../demo.css">
<script type="text/javascript" src="../../jquery-1.8.0.min.js"></script>
<script src="../../plugins2/jquery.parser.js"></script>
<script src="../../plugins2/jquery.validatebox.js"></script>
<script src="../../plugins2/jquery.linkbutton.js"></script>
<script src="../../plugins2/jquery.panel.js"></script>
<script src="../../plugins2/jquery.form.js"></script>
</head>
<body>
<h2>Basic Form</h2>
<div class="demo-info">
<div class="demo-tip icon-tip"></div>
<div>Fill the form and submit it.</div>
</div>
<div style="margin:10px 0;"></div>
<div class="easyui-panel" title="New Topic" style="width:400px">
<div style="padding:10px 0 10px 60px">
<form id="ff" method="post">
<table>
<tr>
<td>Name:</td>
<td><input class="easyui-validatebox" type="text" name="name" data-options="required:true"></input></td>
</tr>
<tr>
<td>Email:</td>
<td><input class="easyui-validatebox" type="text" name="email" data-options="required:true,validType:'email'"></input></td>
</tr>
<tr>
<td>Subject:</td>
<td><input class="easyui-validatebox" type="text" name="subject" data-options="required:true"></input></td>
</tr>
<tr>
<td>Message:</td>
<td><textarea name="message" style="height:60px;"></textarea></td>
</tr>
<tr>
<td>Language:</td>
<td>
<select class="easyui-combobox" name="language"><option value="ar">Arabic</option><option value="bg">Bulgarian</option><option value="ca">Catalan</option><option value="zh-cht">Chinese Traditional</option><option value="cs">Czech</option><option value="da">Danish</option><option value="nl">Dutch</option><option value="en" selected="selected">English</option><option value="et">Estonian</option><option value="fi">Finnish</option><option value="fr">French</option><option value="de">German</option><option value="el">Greek</option><option value="ht">Haitian Creole</option><option value="he">Hebrew</option><option value="hi">Hindi</option><option value="mww">Hmong Daw</option><option value="hu">Hungarian</option><option value="id">Indonesian</option><option value="it">Italian</option><option value="ja">Japanese</option><option value="ko">Korean</option><option value="lv">Latvian</option><option value="lt">Lithuanian</option><option value="no">Norwegian</option><option value="fa">Persian</option><option value="pl">Polish</option><option value="pt">Portuguese</option><option value="ro">Romanian</option><option value="ru">Russian</option><option value="sk">Slovak</option><option value="sl">Slovenian</option><option value="es">Spanish</option><option value="sv">Swedish</option><option value="th">Thai</option><option value="tr">Turkish</option><option value="uk">Ukrainian</option><option value="vi">Vietnamese</option></select>
</td>
</tr>
</table>
</form>
</div>
<div style="text-align:center;padding:5px">
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="submitForm()">Submit</a>
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="clearForm()">Clear</a>
</div>
</div>
<script>
function submitForm(){
$('#ff').form('submit');
}
function clearForm(){
$('#ff').form('clear');
}
</script>
</body>
</html>

插件效果

easyui源码翻译1.32--Form(表单)的更多相关文章

  1. easyui源码翻译1.32+API翻译全篇导航 (提供下载源码)

    前言 EasyUI每个组件都会有 属性.方法.事件 属性 所有的属性都定义在jQuery.fn.{plugin}.defaults里面.例如,对话框属性定义在jQuery.fn.dialog.defa ...

  2. easyui源码翻译1.32--ValidateBox(验证框)

    前言 使用$.fn.validatebox.defaults重写默认值对象.下载该插件翻译源码 validatebox(验证框)的设计目的是为了验证输入的表单字段是否有效.如果用户输入了无效的值,它将 ...

  3. easyui源码翻译1.32--datagrid(数据表格)

    前言 此前网上有easyui1.25的源码  应该算是比较老的版本  之后又经历了1.26 . 1.3. 1.31. 1.32 .1.33.1.34  1.33开始支持css3 算是又一个转折  但是 ...

  4. easyui源码翻译1.32--EasyLoader(简单加载)

    前言 扩展自$.fn.datebox.defaults,使用$.fn.datetimebox.defaults重写默认值对象.下载该插件翻译源码 源码 /** * jQuery EasyUI 1.3. ...

  5. easyui源码翻译1.32--Layout(布局)

    前言 使用$.fn.layout.defaults重写默认值对象.下载该插件翻译源码 布局容器有5个区域:北.南.东.西和中间.中间区域面板是必须的,边缘的面板都是可选的.每个边缘区域面板都可以通过拖 ...

  6. easyui源码翻译1.32--Draggable(拖动)

    前言 使用$.fn.draggable.defaults重写默认值对象.下载该插件翻译源码 源码 /** * jQuery EasyUI 1.3.2 * *翻译:qq 1364386878 --拖动 ...

  7. easyui源码翻译1.32--Droppable(放置)

    前言 使用$.fn.droppable.defaults重写默认值对象.下载该插件翻译源码 源码 /** * jQuery EasyUI 1.3.2 * *翻译:lbq --放置 拉伸 */ (fun ...

  8. easyui源码翻译1.32--Resizable(调整大小)

    前言 使用$.fn.resizable.defaults重写默认值对象 下载该插件翻译源码 源码 /** * jQuery EasyUI 1.3.2 * *翻译:qq 1364386878 Resiz ...

  9. easyui源码翻译1.32--Pagination(分页)

    前言 使用$.fn.pagination.defaults重写默认值对象下载该插件翻译源码 该分页控件允许用户导航页面的数据.它支持页面导航和页面长度选择的选项设置.用户可以在分页控件上添加自定义按钮 ...

随机推荐

  1. 介绍map.entry接口

    Map是java中的接口,Map.Entry是Map的一个内部接口.java.util.Map.Entry接口主要就是在遍历map的时候用到. Map提供了一些常用方法,如keySet().entry ...

  2. SQL Server 负载均衡集群方案之Moebius

    一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 背景(Contexts) 架构原理(Architecture) 测试环境(Environment) 安装Moebius( ...

  3. 怎样向IT行业的朋友说明《圣经》的重要性

    “世界的官方文档”——怎么样?

  4. 解决自定义BackItem与Pop Gesture冲突的问题

    在做项目的时候遇到的这个问题, 一开始项目要求自定义导航栏返回按钮,结果发生了没法手势返回的问题,以为是需要添加拖拽手势呢,结果折腾了一下午没有实现想要的效果.接着一直百度问题,才发现跑偏了,犯了一个 ...

  5. leetcode之Rectangle Area

    Find the total area covered by two rectilinear rectangles in a 2D plane. Each rectangle is defined b ...

  6. JSTL 入门

    JSTL--JSP Standard Tag Library--JSP标准标签函式库         当前版本 1.2.5     JSP 标准标签库(JSTL) JSP标准标签库(JSTL)是一个J ...

  7. Update msi using vbscript

    参考: http://stackoverflow.com/questions/1609250/how-do-i-add-update-a-property-inside-an-msi-from-the ...

  8. linux 判断指定用户对指定目录具有的权限

    脚本名:power.sh 脚本内容: ------------------------------------------- 注意:必须以root 身份执行该脚本. 脚本power.sh 需要两个参数 ...

  9. 九度OJ 1348 数组中的逆序对 -- 归并排序

    题目地址:http://ac.jobdu.com/problem.php?pid=1348 题目描述: 在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对.输入一个数组,求 ...

  10. OpenJudge/Poj 1207 The 3n + 1 problem

    1.链接地址: http://bailian.openjudge.cn/practice/1207/ http://poj.org/problem?id=1207 2.题目: 总时间限制: 1000m ...