程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> html-js 按鈕不響應怎麼解決

html-js 按鈕不響應怎麼解決

編輯:編程綜合問答
js 按鈕不響應怎麼解決
 $(function() {      
      $("#back").click(function() {       //返回按鈕事件   
       location.href = "welcome.html";
                 });
     $("#search").click(function(){
     var deptno = $("#deptno").val();  
      var res = query("select * from emp where deptno=" + deptno + "");     //組裝SQL語句並執行查詢
       if(res != null){                //判斷是否有返回值
                       //var res_2=query("select * from emp where deptno=" + deptno + ");
     sessionStorage['deptno'] = deptno;       //deptno是要查看員工的部門的編號,把該編號放入sessionStorage,
                        location.href = "get_dep_emp.html";
 }
                 });

             });
         </script>
     </head>
 <body>
         <div class="content">
             <h2 class="title">查詢部門員工</h2>
             <hr />
             <table width="90%" align="center" class="tablelist">
                 <tr>
                     <td width="45%" align="right">部門編號:</td>
                     <td><input type="text" id="deptno" /></td>
                 </tr>
                 <td colspan="2" align="center">
                     <input type="submit" value=" 查詢 " id="search"  class="button" />
                     <input type="button" value=" 返回 " id="back"  class="button" />
   </td>

             </table>
         </div>
     </body>

但是查詢和返回兩個按鈕都沒有響應。。純屬菜鳥,請大神指點

最佳回答:


用chrome的console or Firebug看看有錯沒有先

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved