下面的Textfield提交按钮在表单内部不起作用

时间:2015-08-15 08:09:59

标签: php jquery html forms

我有一个表单,顶部是提交按钮,提交按钮后是文本字段。

现在问题是在提交表单时,文本字段中的值没有得到。

问题是什么。我在这里附上我的代码。请看看。

<form action="write_blog_add.php" method="post" id="form1">
    <button type="submit" name="publish" id="upload">Publish</button>
    <input type="text" name="blog_title" placeholder="Blog Title Comes Here" />
    <input type="text" name="blog_descr" placeholder="Blog Description Comes Here" />
</form>

有没有办法解决我的问题。我正在使用Jquery提交表单数据。

$(document).ready(function() {
    $('#upload').click(function() {
        $("#viewimage").html('');
        $("#viewimage").html('<img src="images/Preloader_2.gif" />');
        $("#form1").ajaxForm({
            target: '#viewimage'
        }).submit();
    });
});

0 个答案:

没有答案