<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <script type="text/javascript"> function test(Names){ var Name for (var i=1;i<4;i++){ var tempname="mune_x"+i var NewsHot="x"+i if (Names==tempname){ Nnews=document.getElementById(NewsHot) Nnews.style.display=''; }else{ Nnews=document.getElementById(NewsHot) Nnews.style.display='none'; } } } </script> </head> <body> <form> <select size="1" name="D1" onChange="javascript:test('mune_x'+this.value)"> <option value="1">密保手机</option> <option value="2">密保邮箱</option> <option value="3">密保问题</option> </select> <input id="x1" type="text" placeholder="请输入密保手机"> <input id="x2" style="display:none" type="text" placeholder="请输入密保邮箱"> <input id="x3" style="display:none" type="text" placeholder="请选择密保问题"> </form> </body> </html>
qq_冲哥_0
qq___524