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.
これに似たタイトルがいくつかありますが(たとえば、ここ、ここ、ここ)、それらが示すように複雑であるとは信じません。次の値は「20px」です。どうすれば「20」を返すことができますか?
var base=$('#id').css('right');
parseInt()解析された整数を返します。
parseInt()
var cssValue = $('#id').css('right'); //returns 20px var parsedCssValue = parseInt(cssValue); //returns 20