• switch使用--查询水果价格案例


    <!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>

      

  • 相关阅读:
    uni_app系列
    并发编程
    VUE+DRF系列
    其实我是个诗人
    中医
    linux+docker
    Mysql数据库
    爱好
    AJAX
    Django
  • 原文地址:https://www.cnblogs.com/shanlu0000/p/11200071.html
Copyright © 2020-2023  润新知