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.
次の入力でユーザーが 1. を削除できないようにするにはどうすればよいですか?
<input type="text"value="1.demomomo">
ゼロインデックスで値を確認し、1でない場合は追加できます
$('#txt1').keyup(function(){ if($(this).val()[0] !=1) $(this).val(1+$(this).val()); })