이 글의 예시에서는 JS를 사용하여 select에서 옵션 속성을 변경하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
친구가 작은 문제를 해결하도록 도와주세요. 요구사항은 선택한 탭에 표시된 텍스트 값을 변경하는 것이며, 새 값은 특정 텍스트 상자에 저장됩니다.
초기 창:
<html> <head> <title>原窗口</title> <script> var parentValue=""; //全局变量,用于保存点击详情时select中指定opeion的值 function detail() { var select=document.getElementById('SHGX'); //获得select对象 parentValue=select.options[select.selectedIndex].text; window.open('详情窗口.html') } function updateSelect(childValue) { var select=document.getElementById('SHGX'); for(var i=0;i<select.length;i++) { if(select.options[i].text==parentValue) select.options[i].text=childValue; } } </script> </head> <body> <select id='SHGX'> <option value='111' title='夫'>夫</option> <option value='112' title='妻'>妻</option> <option value='120' title='子'>子</option> <option value='121' title='独生子'>独生子</option> <option value='122' title='继子'>继子</option> <option value='128' title='女婿'>女婿</option> </select> <button onclick="detail(); ">详情</button> </body> </html>
세부정보 창:
<html> <head> <title>详情窗口</title> <script> function modify() { var childValue=document.getElementById('text_01').value; opener.updateSelect(childValue); //调用父窗口的函数 } </script> </head> <body> <input id="text_01" type="text" value=""/> <button onclick="modify();">修改</button> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍에 도움이 되기를 바랍니다.