LoginSignup
0
0

More than 5 years have passed since last update.

Androidブラウザで、jQueryで数値を変更するときの単位

Posted at

コミュニケーションって難しい!!!!!

w

今回起きた問題、一部Androidでヘッダー固定されない。

原因は簡単で、

var pos = 100;
$('header').css({'top':pos});

この記述。

var pos = 100;
$('header').css({'top':pos + 'px'});

これで解決。(略しすぎてすみません。)

私の私物のAndroid 5.1.1では問題なく動いていたので、全く気づかなかった。
おそらくiOSでも問題なく。
現在わかっているのは、

4.4.2 標準ブラウザ
4.4.2 Chrome
5.0.2 Chrome

おそらくこれ以下で起きているみたいだ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0