0

我需要创建这样的东西。当我单击图像时,它将触发下面的脚本。

$("#txtHint").html("<form action='inline_spec.php' id = 'upLoadForm' method='post' enctype='multipart/form-data'><center><input type='text' id='file' name = 'file' style='visibility:show' ></center></form>");

该脚本将打开一个文本文件输入表单。提交表单后,我需要在 txtHint 中显示结果。可能吗?

4

1 回答 1

0

除非您使用 AJAX 提交表单,否则您将无法输入结果upLoadForm#textHint请参阅jQuery 表单插件了解如何执行此操作。将 jQuery Form Plugin 添加到页面中,然后用它替换您的 JS 行。

var $hint = $("#txtHint");
var $form = $("<form action='inline_spec.php' id = 'upLoadForm' method='post' enctype='multipart/form-data'></form>")
                .appendTo($hint)
                .html("<center><input type='text' id='file' name = 'file' style='visibility:show' ></center>")
                .ajaxForm(function(response)
                {
                    $hint.html('Response from form post:<br/>' + response)
                });
于 2012-07-26T15:44:46.953 回答