我有一个表单,我使用 GET/IMPORT 按钮从其他文档中获取值并进入当前表单,如下所示。以前我设置了 fix value: $file = '/user/doc.xml';
inside meta.php
,所以当我按下 GET/IMPORT 按钮时,它会从 /user/doc.xml 文件中获取结果。
现在我已添加<input name="file" value="" />
到此表单并希望使用此文件将路径发送到 $file。我知道当我按下 GET/IMPORT 按钮时,就会调用 meta.php 文件。
所以我的问题是:如何使用此输入字段将 $file 值/路径发送到 meta.php。
这是我的脚本和$file input field
:
<form id=file method="POST" >
<input name="file" value="" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$('.button').click(function() {
$.get('meta.php', function(data) {
result = $.parseJSON(data);
$("input[name='nick_name']").val(result.avaname);
$("#age").val(result.tavaage).attr("selected","selected");
});
});
});
</script>
<input class="button" type="button" value="GET/IMPORT" />
</form>
谢谢大家的帮助。