코드:
는 value={$post.post_class} 값에 따라 다양한 옵션 값을 표시하며, value에는 0과 1의 두 가지 값만 있습니다. ㅋㅋㅋ
value={$post.post_class}
기본 선택이 맞습니다. jquery의 attr을 사용하세요. 기본 선택 값이 1이라고 가정하면 코드는 다음과 같습니다.
select 태그의 값을 0이나 1로 설정하는 것만으로도 충분하지 않나요
으아악
http://jsrun.net/d9YKp
원인: document.querySelector('#class').value获取不到select中的value值(即<select class="form-control" name="post[post_class]" id="class2" value="{$post.post_class}">).
document.querySelector('#class').value
<select class="form-control" name="post[post_class]" id="class2" value="{$post.post_class}">
그러므로 숨겨진 입력<input type="hidden" id = "class" value="{$post.post_class}"/>을 추가하여 백그라운드에서 전송된 값을 가져온 다음 판단하세요.
<input type="hidden" id = "class" value="{$post.post_class}"/>
기본 선택이 맞습니다. jquery의 attr을 사용하세요. 기본 선택 값이 1이라고 가정하면 코드는 다음과 같습니다.
으아악select 태그의 값을 0이나 1로 설정하는 것만으로도 충분하지 않나요
으아악
http://jsrun.net/d9YKp
원인:
document.querySelector('#class').value
获取不到select中的value值(即<select class="form-control" name="post[post_class]" id="class2" value="{$post.post_class}">
).그러므로 숨겨진 입력
으아악<input type="hidden" id = "class" value="{$post.post_class}"/>
을 추가하여 백그라운드에서 전송된 값을 가져온 다음 판단하세요.