
jquery
poppyCL
这个作者很懒,什么都没留下…
展开
-
JQuery版本与accordion高度设置
1、JQuery版本1.8及以下autoHeight: false$("#component").accordion({ collapsible: true, autoHeight: false, active:0});2、JQuery版本1.9及以上heightStyle:'content’$("#component").accordion({ collapsible: t...原创 2019-12-09 12:34:51 · 578 阅读 · 0 评论 -
jqGrid使用记录
https://www.cnblogs.com/kissdodog/p/3875992.html转载 2019-12-03 10:41:55 · 177 阅读 · 0 评论 -
ime-mode 不支持Chrome | 输入框限制输入语言
一、CSS 之 ime-mode参考:https://blog.youkuaiyun.com/tyjlearning/article/details/72625377<input id="test1" name="test1" style="ime-mode:disabled"/><input id="test2" name="test2" style="ime-mode:active...原创 2019-11-06 17:15:40 · 15375 阅读 · 1 评论 -
谷歌chrome关闭iframeDialog弹框
@TOCgoogle关闭子页面弹框google关闭子页面弹框问题用的google调试项目,用了以下几种方法都不行。1、window.close();必须是使用window.open打开的窗体才可以使用window.opener=null;window.close();无提示关闭窗体。2、open(location, '_self').close();3、window.ope...原创 2019-09-22 21:17:16 · 843 阅读 · 0 评论 -
iframeDialog子页面在不关闭的情况下给父页面组件赋值 & jqGrid 分页
iframeDialog子页面在不关闭的情况下给父页面组件赋值父页面<input type="text" id="fatherInput1"><input type="text" id="fatherInput2">子页面<script>$(function() { $("#grid").jqGrid({ datatype: 'local',...原创 2019-09-23 21:28:40 · 260 阅读 · 0 评论 -
jquery组件不可点击
jquery组件不可点击举例 table,可用addClass和removeClass方法增加删除class<style> .noclick { /*不可点击*/ pointer-events: none; /*颜色变浅一点*/ opacity: 0.6; }</style><script th:inline="javascript...原创 2019-09-23 21:01:39 · 199 阅读 · 0 评论