程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> jsp-js加入ajax代碼之後,js不起作用了

jsp-js加入ajax代碼之後,js不起作用了

編輯:編程綜合問答
js加入ajax代碼之後,js不起作用了
 <%@page import="java.sql.ResultSet"%>
<%@page import="java.sql.Statement"%>
<%@page import="java.sql.DriverManager"%>
<%@page import="java.sql.SQLException"%>
<%@page import="java.sql.Connection"%>
<%@page import="java.util.ArrayList"%>
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
<script type="text/javascript">
function ajaxEx() {
    alert("hello");
    var name = document.insertForm.T_name.value;
    alert(name);
    var xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    var url ="searchAction?T_name="name;
    xmlHttp.open("post",url,true);
    xmlHttp.onreadystatechange=function (){
        if(xmlHttp.readystate == 4){
            resultDiv.innerHTML +=xmlHttp.responseText;
        }   
        else{
            alert("hello");
        }
    }
    xmlHttp.send();
}
</script>
    <form method="post" name="insertForm" style="margin-bottom: 50px;margin-top: 50px;">
        請輸入要查詢的圖書的信息:<br/>
        <br /> 名稱:<input type="text" name="T_name" onkeyup="ajaxEx()">
            </form>
    <hr>
    書籍信息<br>
    <ul style="height: 0px ;padding: 0px;margin: 0px;">
        <li style="width: 80px;display: inline-block;list-style: none;">名稱</li>
        <li style="width: 40px;display: inline-block;list-style: none;">編號</li>
        <li style="width: 40px;display: inline-block;list-style: none;">價格</li>
    </ul><br/>
    <div id="resultDiv">


    </div>
</body>
</html>
# 去掉這部分之後,js就可以彈出了“hello”
xmlHttp.open("post",url,true);
    xmlHttp.onreadystatechange=function (){
    if(xmlHttp.readystate == 4){
    resultDiv.innerHTML +=xmlHttp.responseText;
    }
    else{
    alert("hello");
    }
    }
  xmlHttp.send();

最佳回答:


var url ="searchAction?T_name="name;

==>>

var url ="searchAction?T_name="+name;

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