首页 > TAG信息列表 > currentStyle
js画吊线图
一、定义一个长话短说的代替物:$(id)=return document.getElementById(id) 定义一个函数,函数名叫$。 接收一个参数id , 调用时返回id为此id的元素对象。 function $(id) { return document.getElementById(id)} 二、定义一个偏移量,参数为nodenode(结点):网络连接的获取样式
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>获取样式</title> <style> #div1{ width:200px; height:200px; background:js兼容问题总结
01、获取滚动条滚动的距离 var sTop = document.documentElement.scrollTop || document.body.scrollTop 02、获取非行间样式 IE: currentStyle[attr]标准:getComputedStyle[attr]function getStyle(obj,attr){ if(obj.currentStyle){ return obj.currentStyle原生js获取css样式
var ele = document.getElementById("eleid");1:ele.style.元素名称 2:var style = window.getComputedStyle ? window.getComputedStyle(ele, null) : ele.currentStyle; style.元素名称; window.getComputedStyle IE早期版本不兼容,第二个参数可以获取伪类currentStyle