다음과 같은 양식을 받은 경우가 있습니다.
<form id="hello"> <input type="hidden" name="id" /> </form>
그리고 자바스크립트를 사용하여 ID를 검색하려고 했습니다.
const form = document.getElementById("#hello") console.log(form.id)
그러나 이로 인해 다음이 반환되었습니다.
<input type="hidden" name="id" />
대신 HTMLElement를 사용하세요. 따라서 이 문제를 완화하기 위해 대신 getAttribute 함수를 사용했습니다.
const form = document.getElementById("#hello") console.log(form.getAttribute('id'))
처음에는 이 예가 다소 관련 없는 문제인 것 같다고 생각했습니다. 하지만 제 경우에는 HTMLElement가 인수로 수신되는 유틸리티 라이브러리를 개발하고 있었습니다.
function formEnable(form,enable,resetFeedback=true){ // checks whether for is an actual form are ommited for simplicity const formId = form.id const submitBtn = form.querySelector(`button[type="submit"]`)?? document.querySelector(`button[form="${formId}"][type="submit"]`) ?? document.querySelector(`button[form="${formId}"]`); if(!submitBtn){ throw Error("Unable to enable or disable form") } // Form Enabling Logic }
내 경우에는 이 함수를 사용하여 양식 활성화를 위한 논리를 배치했는데 이름 ID가 있는 숨겨진 입력이 내 양식의 입력 필드였기 때문에 버튼을 검색하지 못했습니다.
그래서 저는 다음과 같이 했습니다.
function formEnable(form,enable,resetFeedback=true){ // checks whether for is an actual form are ommited for simplicity const formId = form.getAttribute('id'); const submitBtn = form.querySelector(`button[type="submit"]`)?? document.querySelector(`button[form="${formId}"][type="submit"]`) ?? document.querySelector(`button[form="${formId}"]`); if(!submitBtn){ throw Error("Unable to enable or disable form") } // Form Enabling Logic }
내 양식 내에 존재하는 입력 및 해당 이름과 관련된 id 속성을 받았는지 확인합니다.
위 내용은 양식 ID를 가져오는 중입니다. 그것은 당신이 생각하는 것이 아니다의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!