概述
复制代码 代码如下:
var head = document.getElementById( "box" );
// alert( head.style.background )
// alert( head.style.cssFloat || head.style.styleFloat ) // 获取float不一样
// head.style.fontSize = "30px"
head.style.color = "#f00";
// (typeof head.style.cssFloat != "undefined" ) ? head.style.cssFloat = "right" : head.style.styleFloat = "right" 跨浏览器设置float
// var style = ( window.getComputedStyle ? window.getComputedStyle( head,null ) : null ) || head.currentStyle; 跨浏览器获取计算之后的样式
// alert( style.fontSize )
// 这样可以获取到内联和链接
// 因为计算之后的样式会驻留在浏览器的计算样式里面 所以就可以获取得到
最后
以上就是高挑唇彩为你收集整理的获取内联和链接中的样式(js代码)的全部内容,希望文章能够帮你解决获取内联和链接中的样式(js代码)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复