gpt4 book ai didi

javascript - Ajax 脚本未更新 PHP 文件及其 var 值

转载 作者:行者123 更新时间:2023-11-29 23:54:28 25 4
gpt4 key购买 nike

这是一个简单的表单,单击时我需要在文件 process.php 中显示计算值,但这对我不起作用。似乎“点击”“=”没有做任何事情,在process.php中有默认值“0”,没有结果。

 <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<script src="//code.jquery.com/jquery-1.12.0.min.js">
$('#button').click(function() {
var val1 = $('#text1').val();
var val2 = $('#text2').val();
$.ajax({
type: 'POST',
url: 'demo/process.php',
data: { text1: val1, text2: val2 },
success: function(response) {
$('#result').html(response);
}
});
});
</script>

<input type="text" id="text1"> +
<input type="text" id="text2">
<button id="button"> = </button>

<div id="result"></div>
</body>
</html>

和 PHP

<?php
$text1 = $_POST['text1'];
$text2 = $_POST['text2'];
echo $text1 + $text2;
?>

最佳答案

首先,您使用的是 php 服务器吗?

如果你这样做那么试试这个(是的我使用了不同的库):

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>

</head>
<body>
<form>
<input type="text" id="text1" />
<input type="text" id="text2" />
<button type="button" id="button"> = </button>
</form>

<div id="result"></div>
<script type="text/javascript">
$('#button').click(function() {
var val1 = $('#text1').val();
var val2 = $('#text2').val();

$.post( "demo/process.php", {text1: val1, text2: val2} , function(data){
$('#result').html(data);
});
});
</script>
</body>
</html>

在 PHP 中:

<?php
$text1 = $_POST['text1'];
$text2 = $_POST['text2'];
echo $text1 + $text2;
?>

提示:始终为元素指定类型属性。不同的浏览器对元素使用不同的默认类型。

关于javascript - Ajax 脚本未更新 PHP 文件及其 var 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42059239/

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