LoginSignup
0
0

More than 3 years have passed since last update.

iOS12のSafariでは属性セレクタのエスケープが解釈できない?

Posted at

問題

iOS13のSafariでは動くのにiOS12のSafariで動かない、まさかのシンタックスエラー

1.jpg

原因

横着してライブラリが生成する情報から属性セレクタを使って無理やり指定していた

'input[name=export_diploma_supplements_form\\[export_type\\]]:first-child'

解決方法

横着せずIDなりクラスなりを定義してそれを用いて指定する

'input.js-diploma-supplement-export-type:first-child'

感想

13にできない端末が生まれたから検証パターンが増えて地味に辛い

参考

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