当用户更改类别(选择标签更改)时,我正在尝试用数据库信息填写表单。这是我的代码。
<form onsubmit='return false'>
select<select id="select">
<option value='5'>5</option>
<option value='6'>6</option>
<option value='7'>7</option>
<option value='8'>8</option>
<option value='9'>9</option>
<option value='10'>10</option>
</select>
fname<input type="text" id='fname' name="fname" /><br />
lname<input type="text" id='lname' name="lname" /><br />
</form>
<script type="text/javascript">
$(document).ready(function(){
$("#select").change(function(){
selectid = $(this).val();
// using post method to get firstname
$.post("retreive.php", {selectid:selectid}, function(result){
$("#fname").val();
//again using post method here get lastname
$.post("one.php", {selectid:selectid}, function(result){
$("#lname").val();
});
});
});
});
检索.php
<?php
//for firstname
if( isset($_POST['selectid']) ){
//using this selectid i'm getting firstname
echo $firstname;
exit();
}
//again for last name
if( isset($_POST['selectid']) ){
//using this selectid i'm getting firstname
echo $lastname;
exit();
}
?>
最后,此过程自动填写表单字段,即;名字和姓氏。我知道这是愚蠢和耗时的程序。我听说这项工作很容易完成,不需要让我们的 php 承担所有使用 JSON 概念的负担。我试图理解但无法理解。我希望你们能理解我面临的问题,希望有一个解决方案。提前致谢!