<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title> JS获取CSS属性 </title> <style type="text/css"> #f{background-color:#FF0000;} </style> </head> <body> <p id="f" style="width:200px; height:200px;"></p> <script type="text/javascript"> var o = document.getElementById('f'); document.write(o.style.width + '<br>'); // 200px document.write(o.style.backgroundColor + '<br>'); // 空白 function getDefaultStyle(obj,attribute){ return obj.currentStyle?obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj,false)[attribute]; } document.write(getDefaultStyle(o, 'width') + '<br>'); // 200px document.write(getDefaultStyle(o, 'backgroundColor')); // #FF0000 </script> </body> </html>
CSS プロパティを取得する JS 方法:
function getDefaultStyle(obj,attribute){ return obj.currentStyle?obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj,false)[attribute]; }
この記事では、JS を通じて CSS プロパティ値を取得する方法について説明します。関連コンテンツの詳細については、php 中国語 Web サイトを参照してください。
関連する推奨事項:
CSS を使用して円効果を実現する方法 (CSS スプライト)
PHP を介して AES256 暗号化アルゴリズムを実行する方法
以上がJS経由でCSSプロパティ値を取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。