Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコード行:
$border_width = parseInt($('#jma_border_element').css('border-width')); console.log($border_width);
例外値は 5 です。chrome では動作しますが、firefox(18.0.2) では nan です。
border-width4 つの境界線はすべて異なる幅、スタイル、および色を持つことができるため、使用することはお勧めできません。そのため、一部のブラウザーは個々の値のみを認識します。それらがすべて同じであることが確実にわかっている場合は、単にこれを使用してください...
border-width
$border_width = parseInt($('#jma_border_element').css('border-left-width'), 10);