DropDownList 선택 항목의 값 가져오기
3460 단어 list
1 <script type="text/javascript" language="javascript">
2 function CheckDropDownList() {
3 var dropDownList = document.getElementById("<%=DropDownListID.ClientID %>"); // DropDownList
4 var dropDownListValue = dropDownList.options[dropDownList.selectedIndex].value; //
5 // :DropDownListID DropDownList ID。
6
7 //JS 0 :
8 if (dropDownListValue == 0) {
9 alert(" …….");
10 dropDownList.focus();
11 return false;
12 }
13 else {
14 return true;
15 }
16 }
17 </script>
function enble() {
var ddl = document.getElementById("<%=ddl_YesNo_State.ClientID %>");
var txt = document.getElementById("<%=btn_SaveALL.ClientID %>");
var ddlValue = ddl.options[ddl.selectedIndex].value;
if (ddlValue.toString() == " ") {
txt.disabled = true;
}
else {
txt.disabled = false;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[SwiftUI]List화한 CoreData를 가로 스와이프로 행 삭제하는 방법상당히 조사했지만 일본어 자료가 없었기 때문에 비망록으로 남겨 둔다. 아래와 같이 CoreData를 참조한 리스트를 가로 스와이프로 삭제하고 싶었다. UI 요소뿐만 아니라 원본 데이터 당 삭제합니다. 잘 다른 페이지...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.