gpt4 book ai didi

javascript - 使用 ajax 从 get in php 中检索许多值

转载 作者:行者123 更新时间:2023-11-28 01:18:54 26 4
gpt4 key购买 nike

这里我有 3 个文件 ajax.js、index.php 和 retrieve.php。

$('#button').click(function(){
var string=$('#string').val();
$.get('php/retrieve.php',{input: string} ,function(data){
$('#feedback').text(data);
});
});

索引.php

<html lang="fr">
<head><title></title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>


<input id="string" type="text" name="string"/><input id="button" type="button" value="Go"/>
<input id="string2" type="text" name="string"/><input id="button2" type="button" value="Go"/>
<div id="feedback"></div>
<div id="feedback2"></div>

<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
<script type="text/javascript" src="js/ajax.js"></script>
</body>
</html>

检索.php

<?php
if(isset($_GET['input'])){
$string=$_GET['input'];
echo strrev($string);
}
?>

在 retrieve.php 中,我从 ajax.js 中检索输入值。 ajax.js 从 index.php 中检索值。但这里仅检索一个值(来自 <input id="string" type="text" name="string"/> )我想从 index.php 中检索许多值(例如 <input id="button2" type="button" value="Go"/> )我该怎么做?

最佳答案

$('#button').click(function(){
var string=$('#string').val();
$.ajax({
type:"GET",
url: "php/retrieve.php?input=" + string,
dataType: "html"
}).done(function(data){
$('#feedback').html(data);
});
});

在 retrieve.php 中执行 GET 请求,并为 url 提供带有字符串值的变量输入。然后,检索到的数据将反射(reflect)在 #feedback div 中。

关于javascript - 使用 ajax 从 get in php 中检索许多值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34546635/

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