JS引入CSS文件
摘要://引入CSS文件 $("head").append(""); css = $("head").children(":last"); css.attr({ rel: "stylesheet", type: "text/css", href: "/front/demo.css" });
阅读全文
posted @
2017-12-25 15:21
time_on
阅读(399)
推荐(0) 编辑
获取鼠标位置
摘要:$('body').mousemove(function (e) { var xx = e.originalEvent.x || e.originalEvent.layerX || 0; var yy = e.originalEvent.y || e.originalEvent.layerY || 0; $("div.po...
阅读全文
posted @
2017-11-30 16:22
time_on
阅读(152)
推荐(0) 编辑
测试是否理解 JavaScript 的核心,闭包和作用域(转)
摘要:英文原文地址:http://dmitry.baranovskiy.com/post/91403200 Dmitry Baranovskiy 的博客中有篇文章(http://dmitry.baranovskiy.com/post/91403200),其中有五段小代码,用来测试是否理解 JavaScri
阅读全文
posted @
2017-11-17 16:01
time_on
阅读(83)
推荐(0) 编辑
rename-修改对象属性名称(转)
摘要:function renameProperties(sourceObj, replaceList, destObj) { destObj = destObj || {}; // for each property in source object $.each(sourceObj, function(key) { // if the property re...
阅读全文
posted @
2017-11-17 15:52
time_on
阅读(193)
推荐(0) 编辑
JS中面向对象的5种写法
摘要://第1种写法 function Circle(r) { this.r = r; } Circle.PI = 3.14159; Circle.prototype.area = function () { return Circle.PI * this.r * this.r; } var c = new Circle(1.0); alert(c.area()); //第2种写法 ...
阅读全文
posted @
2017-11-17 11:36
time_on
阅读(230)
推荐(0) 编辑
Javascript 操作select控件大全(新增、修改、删除、选中、清空、判断存在等)(参考网上资料)
摘要:1判断select选项中 是否存在Value="paraValue"的Item 2向select选项中 加入一个Item 3从select选项中 删除一个Item 4删除select中选中的项 5修改select选项中 value="paraValue"的text为"paraText" 6设置sel
阅读全文
posted @
2017-11-17 11:33
time_on
阅读(216)
推荐(0) 编辑
datagrid行拖拽(参考网上的相关资料)
摘要:主页面 datagrid-dnd.html jQuery EasyUI Demo datagrid-dnd.js (function($){ $.extend($.fn.datagrid.defaults, { dropAccept: 'tr.datagr...
阅读全文
posted @
2017-11-15 15:56
time_on
阅读(873)
推荐(0) 编辑
给定treeData,根据关键字进行过滤:显示父级元素;如果节点被选中,那它的子节点也全部被选中
摘要://参数为需要进行过滤的tree和模糊查询关键字 function searchDataSet(value) { //获取tree数据 var treeData = new Array(); var newTreeData = new Array(); $.ajax({ url: '/core/dataset/getTree/', ...
阅读全文
posted @
2017-11-15 15:51
time_on
阅读(1181)
推荐(0) 编辑
复选框
摘要:<label for="checkModelVersion" title="show versions">versions</label> <input type="checkbox" id="checkModelVersion" checked="checked" onchange=""> //1
阅读全文
posted @
2017-10-11 16:20
time_on
阅读(129)
推荐(0) 编辑