前端框架
码农小虾
笔记
展开
-
js获得Controller的值
1、js端代码 var avlNo1 = ''; 放入session2、Controller代码 request.getSession().setAttribute("uuid", uuid1);原创 2018-03-01 08:46:32 · 6418 阅读 · 0 评论 -
java 如何提交list 到后台
1、在jsp 隐藏提交多个name相同的值 ${status.index +1 } 2、js 脚本处理 var原创 2017-10-18 15:29:19 · 4813 阅读 · 0 评论 -
关于引用easyui在谷歌浏览器报错
easyui报错内容:cannot call methods on tooltip prior to initialization;attempted to call method 'hide' 翻译:无法在初始化前在工具提示上调用方法;试图调用满足报错原因主要是调用先后顺序的问题,解决方法:下面是我项目的引用:修改后:script ty原创 2017-12-20 14:56:54 · 1225 阅读 · 0 评论 -
js 比较大小 出错问题
11<= deliverNumber && deliverNumber<= 8 正确原创 2018-01-24 17:30:05 · 740 阅读 · 0 评论 -
ie6 easyui tab组件下 滚动 datagrid不会滚动bug
<div style="position:relative;overflow:auto;margin-top: 35px" id="tarDBTab" > <table width="100%" cellpadding="0" cellspacing="1" class="table_targetLab table_list3 table_bo转载 2018-02-08 09:32:59 · 155 阅读 · 0 评论 -
easyui datagrid 查询只有一条数据时,被滚动条遮挡住 ie兼容
table 设置 min-height style="width:100%;min-height: 100px;"原创 2018-02-09 15:04:46 · 1205 阅读 · 0 评论 -
ajax加入遮罩
beforeSend: function () { $.messager.progress({ title: '提示', msg: '系统处理中,请稍候……', text: '' }); }, complete: functi...原创 2018-02-27 17:56:23 · 1795 阅读 · 0 评论 -
JS如何submit
var downloadForm=$("#downloadForm"); downloadForm.append(""); downloadForm.append(""); downloadForm.attr("action","../../statisticsSearch/exportExcel"); downloadForm.submit();原创 2018-03-01 08:42:19 · 3696 阅读 · 0 评论 -
table动态添加删除一行
function del(obj) { $(obj).remove();}function add(id,obj,listname) { var nameVal = obj.innerText; var str=$( ''+nameVal +''+' ' ); $('#'+listname).append(str);}原创 2018-03-01 08:44:25 · 827 阅读 · 0 评论 -
js隐藏显示div
function dismore(hidstr) { var hid=document.getElementById(hidstr); if(hid.style.display=='none'){ $("#"+hidstr).show(); document.getElementById("str1text"+hidstr).innerHTML = '收起全部'; }else{原创 2018-03-01 08:45:01 · 174 阅读 · 0 评论 -
form表单验证
/* * 输入框验证 * * 注: * 1、必填验证需要在必填处加入 class="required" * 2、长度最大值需要在input加入自定义属性maxlen,例如maxlen="3"*/function validatorForm(){ //必填验证 var validatorList = $(".required"); for(var i = 0; i < val...原创 2018-05-08 15:56:11 · 1281 阅读 · 0 评论