gpt4 book ai didi

javascript - 如何修复此代码 : Output gives an error

转载 作者:行者123 更新时间:2023-12-03 00:12:07 27 4
gpt4 key购买 nike

我想显示用户输入的输出。

大家好,我需要显示用户输入的输出,但输出似乎给了我一个错误。

 <label>First Name: </label>
<input id="fname"></input>
<br>
<button id="testing_lang" value="1" onclick="return chk()">
Test Output
</button>
<br>
<p id="query_result">Result will display here</p>


<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
function chk()
{
var firstName = document.getElementById('fname').value;
$.ajax({
type: 'post',
url: 'test.php',
data: firstName,
cache:false,
success: function(html)
{
$('#query_result').html(html);

}
});
return false;
}
</script>

这是我创建的 test.php 中的代码

$firstName=$_POST['firstName'];
echo "Response: " .$firstName;

这是输出的错误

注意:未定义索引:第 2 行 C:\xampp\htdocs\cops\pages\test.php 中的firstName回应:

最佳答案

改变

data: firstName,

data: {firstName : firstName}, 

您需要设置索引和值

关于javascript - 如何修复此代码 : Output gives an error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54681298/

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