
jquery
JAVA-ZHUANG
曾经的毛病,就是我们现在的经验!
展开
-
jquery 对话框(Dialog)插件
<%String path = request.getContextPath();String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";%> jQuery 对话框(Dialog) - 模态原创 2016-09-22 12:57:46 · 3299 阅读 · 0 评论 -
jquery dataTable属性
$(document).ready(function() { $("#example").dataTable({ "bPaginate": true, //开关,是否显示分页器 "bInfo": true, //开关,是否显示表格的一些信息 "bFilter": true, //原创 2016-11-01 09:47:01 · 574 阅读 · 0 评论 -
jquery中解析一个 JSON 字符串
var obj = jQuery.parseJSON('{"name":"John"}');alert( obj.name === "John" );原创 2017-01-04 11:09:36 · 664 阅读 · 0 评论 -
jquery 消息提示框
1.在屏幕中央显示一条提示消息,1秒钟后自动消失function showMsg(msg) { $.messager.show({ title : '消息', msg : msg, timeout : 800, showType : 'slide', style : { right : '', bottom : '', top : document.body原创 2017-01-05 11:38:05 · 1064 阅读 · 0 评论 -
jquery combobox生成下拉框
<input type="text" style="width:200px;" id="jquery" name="jquery" />$.post(url,data,function(_data){ _data=$.parseJSON(_data);//json $("#jquery").combobox({ data : _data, valu原创 2017-01-05 11:45:59 · 3552 阅读 · 0 评论 -
jquery 时间选择器
1.封装timer.js //////////////插件-开始//////////////(function($){ var $timePanel = null ,$hour = null ,$minute = null ,currentTarget = null ,date = new Date();原创 2017-01-18 17:32:09 · 1047 阅读 · 0 评论