日期:2014-05-17 浏览次数:20769 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style type="text/css"> .style1 { border:1px solid #CC3300; } .style2 { border:1px solid #330099; } </style> <script type="text/javascript"> function slt_onchange() { var obj = document.getElementById("slt"); document.getElementById("abc").className = "style" + obj.options[obj.selectedIndex].value; } </script> </head> <body> <div> <select id="slt" onchange="javascript:slt_onchange()"> <option value="1">样式一</option> <option value="2">样式二</option> </select> <input type="text" class="style1" id="abc" /> </div> </body> </html>