gpt4 book ai didi

javascript - XMLHTTPrequest 请求不工作

转载 作者:行者123 更新时间:2023-12-03 11:21:03 26 4
gpt4 key购买 nike

我尝试使用以下代码通过单击按钮将请求发送到 jsp 页面。我检查了 Httpfox,但没有请求。我只是在 html 代码的主体中使用了整个代码。我是不是犯了一些愚蠢的错误。请建议..

<button type="button" onClick="handleButtonClick();">Click Me!</button>
<script type="text/javascript">




function handleButtonClick()
{
// Declare the variables we'll be using
var xmlHttp, handleRequestStateChange;

// Define the function to be called when our AJAX request's state changes:
handleRequestStateChange = function()
{
// Check to see if this state change was "request complete", and
// there was no server error (404 Not Found, 500 Server Error, etc)
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
var substring=xmlHttp.responseText;
// Do something with the text here
alert(substring);
}
}

xmlhttp = new XMLHttpRequest();
xmlHttp.open("GET", "http://csce:8080/test/index.jsp?id=c6c684d9cc99476a7e7e853d77540ceb", true);
xmlHttp.onreadystatechange = handleRequestStateChange;
xmlHttp.send(null);
}
</script>

最佳答案

嗯,在 JavaScript 中,变量是区分大小写的。你有 xmlHttpxmlhttp ;这些应该是相同的。

您还有 <pre><code>在你的 <script> 开头 block ,这是一个 JavaScript 语法错误。

关于javascript - XMLHTTPrequest 请求不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3956552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com