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.
ドット (.) を持つ id のテキスト ボックスの値を出力したいと思います。
元:
<input type="text" id="abc.xyz" value="Hiii"/>
jquery を使用してこの値を出力する方法。
jqueryのクラスセレクターであるため、演算子\\をエスケープするために使用します。.
\\
.
これを試して..
$("#abc\\.xyz").val();