JavaScript突出显示内联样式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript突出显示内联样式相关的知识,希望对你有一定的参考价值。
Puts a red border around anything with an inline style. Prefix with "javascript:" and paste into the address bar to run on a page directly, or run with a load event.
var elements = document.getElementsByTagName("*"); for (i = 0; i < elements.length; i++) { if (elements[i].getAttribute('style')) { var oldstyle = elements[i].getAttribute('style'); elements[i].setAttribute('style', oldstyle + "border: 1px solid #f00;"); } }
以上是关于JavaScript突出显示内联样式的主要内容,如果未能解决你的问题,请参考以下文章
当我将内联代码放入外部子例程时,相关区域的图像地图突出显示停止工作