エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
パスワードの表示/非表示をチェックボックスでスイッチできるようにする - かちびと.net
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
パスワードの表示/非表示をチェックボックスでスイッチできるようにする - かちびと.net
Result jQuery function changeInputType(inputId, type) { var input = $("#" + inputId); $(input).re... Result jQuery function changeInputType(inputId, type) { var input = $("#" + inputId); $(input).replaceWith($("<input />").val(input.val()).attr("placeholder", input.attr("placeholder")).attr("id", inputId).attr("type", type)); } $("#show-ps").change(function() { //チェックされてるときはtextを適応する if ($(this).attr("checked")) { changeInputType("password", "text"); } else { changeInputType("password", "password

