html5 유효성 검사를 사용하여 모든 입력 필드에 jQuery가 자동으로 작성되도록하는 방법을 찾고 있었지만 작성 위치를 알려주는 데 어려움이 있습니다.
나는 이것을 가지고 싶어
<input type="text" name="first_name" value="" id="freeform_first_name"
maxlength="150">
닫는 태그 앞에 자동으로 추가되도록 합니다
<input type="text" name="first_name" value="" id="freeform_first_name"
maxlength="150" required>
나는 라인을 따라 someting 할 수 있다고 생각
$("input").attr("required", "true");
그러나 작동하지 않습니다. 도움을 주시면 감사하겠습니다.
$(function(){....});