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.
すべては私がこれを試した質問にあります:$('#my-div').css('box-shadow');しかしそれは:のようなものを返しますrgb(25,65,588) 10px 10px 10px。色だけを取得する方法は?
$('#my-div').css('box-shadow');
rgb(25,65,588) 10px 10px 10px
これにより、rgbまたはrgba式が取得されます
$('#my-div').css('box-shadow').replace(/^.*(rgba?\([^)]+\)).*$/,'$1')
次に、コンバーターを使用して16進値を取得できます