显示已经制作的文本框中的过滤数据 [英] show filtered data in the already made textboxes

查看:67
本文介绍了显示已经制作的文本框中的过滤数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

正如你可以看到我当前的代码不起作用,我需要你的帮助...我想在我的搜索(文本框)中过滤并显示在那里过滤相应文本框的数据...任何人都可以帮助我的代码工作??我一直在谷歌寻找已经有相同想法的我的程序,但我无法找到任何帮助。



例子预期输出:



http://s38.photobucket.com/user/eloginko/media/cc_zpsf7cfc40f.png.html



html代码:



As you can see my current code doesnt work and i need your help guys...i want to filter in my search(textbox) and show the data filtered in there corresponding textboxes...can anyone help make my code work?? i've been looking in google for days already for the same idea of my program that works but i cant find any help me please.

example expected output:

http://s38.photobucket.com/user/eloginko/media/cc_zpsf7cfc40f.png.html

html code:

<form method="post">
Search batchcode: <input type="text" id="query" name="search" /><br />
<table>
<tr>
<td>
ID: <br />
<input id="id1" type="text" name="id1" /> <br />
<input id="id2" type="text" name="id2" /> <br />
</td>
<td>
Name: <br />
<input id="name1" type="text" name="name1" /> <br />
<input id="name2" type="text" name="name2" /> <br />
</td>
<td>
Score 1: <br />
<input id="optA1" type="text" name="optA1" /> <br />
<input id="optA2" type="text" name="optA2" /> <br />
</td>
<td>
Score 2: <br />
<input id="optB1" type="text" name="optB1" /> <br />
<input id="optB2" type="text" name="optB2" /> <br />
</td>
<td>
Other Qualification: <br />
<input id="other_qual1" type="text" name="other_qual1" /> <br />
<input id="other_qual2" type="text" name="other_qual2" /> <br />
</td>
<td>
Interview: <br />
<input id="interview1" type="text" name="interview1" /> <br />
<input id="interview2" type="text" name="interview2" /> <br />
</td>
<td>
Total: <br />
<input id="total1" type="text" name="total1" /> <br />
<input id="total2" type="text" name="total2" /> <br />
</td>
</tr>
</table>
</form>







脚本功能:





< script type =text / javascript>

$(document).ready(function(){

$('input [name ^ = search]')。click(function(e){

e。的preventDefault();

$ .ajax({

url:search.php,

类型:GET,

数据:{term:$('#query')。val()},

dataType:json,

成功:函数(结果){



$(#id1)。html(result.id);

$(#id2)。html(result.id);

$(#name1)。html(result.name);

$(#name2)。html(result.name);

$(#optA1)。html(result.score1);

$(#optA2)。html(result.score1);

$(#optA1)。html(result.score2);

$(#optA2)。html(result.score2);

$(# other_qual1)。html(result.other_qual);

$(#other_qual2)。html(result.other_qual);

$(#interview1)。 html(result.interview);

$(#interview2)。html(result.interview);

$(#total1)。html(结果。总计);

$(#total2)。html(result.total);

}

});

})

});

< / script>







search.php页面:








script function:


<script type="text/javascript">
$(document).ready(function(){
$('input[name^=search]').click(function(e){
e.preventDefault();
$.ajax({
url:"search.php",
type:"GET",
data : { term : $('#query').val() },
dataType:json,
success : function(result) {

$("#id1").html(result.id);
$("#id2").html(result.id);
$("#name1").html(result.name);
$("#name2").html(result.name);
$("#optA1").html(result.score1);
$("#optA2").html(result.score1);
$("#optA1").html(result.score2);
$("#optA2").html(result.score2);
$("#other_qual1").html(result.other_qual);
$("#other_qual2").html(result.other_qual);
$("#interview1").html(result.interview);
$("#interview2").html(result.interview);
$("#total1").html(result.total);
$("#total2").html(result.total);
}
});
})
});
</script>



search.php page:


<?php

$q = $_GET['term'];

mysql_connect("localhost","root","");
mysql_select_db("test");
header('Content-type: application/json');
$query = mysql_query("SELECT * FROM score WHERE batchcode LIKE '%$q%'");

while($row = mysql_fetch_array($query)){
$data=array('value'=>$row['batchcode'],
'id' => $row['id'],
'name' => $row['name'],
'score1' => $row['score1'],
'score2' => $row['score2'],
'other_qual' => $row['other_qual'],
'interview' => $row['interview'],
'total' => $row['total']
);
}
echo json_encode($data);
?>

推荐答案

(文件).ready (function(){
(document).ready(function(){


('input [name ^ = search]')。click(function(e){

e.preventDefault ();
('input[name^=search]').click(function(e){
e.preventDefault();


.ajax({

url:search.php,

类型:GET ,

数据:{term:
.ajax({
url:"search.php",
type:"GET",
data : { term :


这篇关于显示已经制作的文本框中的过滤数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆