博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js常用
阅读量:6119 次
发布时间:2019-06-21

本文共 1217 字,大约阅读时间需要 4 分钟。

hot3.png

 一、清空选中

window.getSelection?window.getSelection().removeAllRange():document.selection.empty();

二、操纵样式

var oCss=document.styleSheet[0].cssRules || document.styleSheet[0].rules;

alert(oCss[0].style.background);

三、得到元素的样式

IE有obj.currentStyle.background.

DOM有document.defaultView.getComputedStyle(oDiv,null).background.

四、选中文本框的内容

IE有如下:

$('id').οnfοcus=function{

var cc=this.createTextRange(),r=cc.duplicate();

//cc.moveStart('character',0);//从第几个字符开始;

//cc.setEndPoint('EndToStart',0);

//cc.collapse(true);//合并,可用alert(cc.boundingWidth)来查看结果;

cc.select();

}

DOM有如下:

this.setSelectionRange(0,length);//length表示文本框的内容长度。

五、做拖动时,通用用清除选中内容的代码

window.getSelection?window.getSelection().removeAllRanges():document.selection.empty();

$('id').setCapture(false);//ie

document.releaseCapture();//DOM

六、判断节点之间的包含关系

document.defaultView?function(a,b){

return !!(a.compareDocumentPosition(b)&16);

}:function(a,b){

return a!=b&&a.contains(b);

}

七、caller、callee的用法

caller是方法的一个属性,返回当前调用该方法的方法,如:

function one(){two()};

function tow(){alert(two.caller)};

one();//结果弹出one的方法体.

callee属性是arguments的一个属性,返回方法的正文。

八、DOM下获取元素left、top的getBoundingClientRect();

如:

obj.getBoundingClientRect().left;

转载于:https://my.oschina.net/lgmcolin/blog/84891

你可能感兴趣的文章
移动端响应式
查看>>
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
四年C++老炮,转攻Python实践分享
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>
InfoQ趋势报告:DevOps 和云计算
查看>>
舍弃Python,为什么知乎选用Go重构推荐系统?
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>