问题是否有人有任何想法?我只发布了代码所必需的内容。我基本上有一个HTML表单我想从表单上的字段中提取值,然后提交运行ajax调用并填充另一个字段。我想如果我能够将表格中输入的Txt转换为modcreate.php上的PHP变量,它将起作用。因为如果我手动输入没有变量的细节就可以了。
mainpage.php
表格中的相关部分
<tr>
<th>Service Tag:</th>
<th><input type="text" id="inputTag" name="inputTag" value="" onblur="this.value=this.value.toUpperCase()"></td>
</tr>
和
<tr>
<th>Model:</th>
<th>
<input type="text" id="inputModel" name="inputModel" value="">
<a href="#" id="updateBtn">Populate</a>
<div id="spinner">
<img src="\images\ajax-load.gif" alt="Loading..."/>
</div>
</th>
</tr>
<script type="text/javascript" src="\js\jquery-latest.js"></script>
<script type="text/javascript">
$('#updateBtn').click( function(e) {
//to disable the click from going to next page
e.preventDefault();
$.ajax({
url: "modcreate.php",
data: { 'txt1': $('#inputTag').val() },
success: function(data) {
}
});
});
</script>
modcreate.php
<?php
$field1value = $_GET['txt1'];
$file_string = file_get_contents('blahblah.com/'.$field1value);
preg_match("/<title>Product Support for (.+)\| Dell/i", $file_string, $matches);
$print = "$matches[1]";
echo $print;
?>
******解****** 我的ajax调用缺少将数据发送回表单字段的部分
这是工作ajax现在的样子,感谢所有指针的人
<script type="text/javascript" src="\js\jquery-latest.js"></script>
<script type="text/javascript">
$('#updateBtn').click(function(e){
//to disable the click from going to next page
e.preventDefault();
$.ajax({
url: "modcreate.php",
data: { 'txt1': $('#inputTag').val() },
success: function(data) {
$('#inputModel').val(data); //this was the missing part
}
});
});
</script>
答案 0 :(得分:1)
<script type="text/javascript">
$('#updateBtn').click(function(e){
//to disable the click from going to next page
e.preventDefault();
$.ajax({
url: "modcreate.php",
data: 'data="{ "txt1": '+$('#inputTag').val()+' }"',
success: function(data){
}
}
);
});
</script>
在服务器端:
$income_data = json_decode($_GET['data'], true);
$field1value = $income_data['txt1'];