<!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" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Document</title> </head> <script> window.onload=function() { var txt=document.getElementById("txt"); var btn=document.getElementById("btn"); btn.onclick=function()
{ var val=txt.value; //点击按钮之后才会获取文本框中的值 switch(val) { case "苹果" : alert("1元");break; case "香蕉": alert("2元");break; case "梨": alert("3元");break; default: alert("没有这个水果"); } } } </script> <body> <input type="text" id="txt"/> <button id="btn">查询价格</button> </body> </html>