如果我键入的输入文本不匹配,我该如何更改值id?这是代码:
<script src="jquery-1.4.js"></script>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery.autocomplete.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.autocomplete.css" />
<script>
$(document).ready(function()
{
$('[id^="participant"]').keyup(function()
{
var txt = $(this).val();
$.ajax({
type: "POST",
url: "blue.php",
data: "nameparticipant=" + txt,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data)
{
$(this).next().val(data.d);
},
failure: failerEvent
});
});
});
</script>
以下是php代码:
<?php
include"connection.php";
$nameparticipant=$_POST["nameparticipant"]);
$res = mysql_query("select * from tabel where upper(name) like '$nameparticipant%'");
$t=mysql_fetch_array($res);
echo "$t[id]";
?>
这是html正文:
<input type="text" id="participant1" name="name[1][]" value="Andi"/>
<input type="text" id="idparticipant1" name="idparticipant[1][]" value="1001"/>
<input type="text" id="participant2" name="name[2][]" value="Smith"/>
<input type="text" id="idparticipant2" name="idparticipant[2][]" value="1005" />
我能做什么?请帮助我:(
我不知道你想做什么,但我发现你的代码有很多问题。
首先,contentType: "application/json; charset=utf-8",
。这是发送到服务器的数据的内容类型。您没有向服务器发送JSON,因此不需要此行,请删除它。
第二,failure: failerEvent
。选项是error
,而不是failure
。它应该是error: failerEvent
。
第三,echo "$t[id]";
。在AJAX调用中,您说的是dataType: 'json'
,这意味着jQuery期望服务器输出JSON。我只能假设数据库表中的id
字段实际上不是JSON字符串。你可能想要echo json_encode($t)
。
请详细解释您到底想做什么,以及您的错误是什么?还有一个问题要问,为什么在代码中使用两个jquery?第一个jquery-1.4.js和第二个jquery-1.03.2.min.js.