隐藏输入[type=submit]并显示加载图像不起作用
使用jquery,我试图隐藏提交按钮并在单击后显示ajax加载gif。
它工作正常,但表单不再提交。
这是我的 jquery 代码:
$('input[type=submit]').click(function () {
$(this).parent('p').html('<img src="images/ajax-loader.gif" alt="loading" />');
$(this).parent('form').submit();
});
这是我的 html:
<h1>add</h1>
<form method="post" action="form.php">
<p>
<label for="number">number:</label>
<input type="text" name="number" id="number" size="30" value="" />
</p>
<p style="text-align: center;">
<input type="submit" value="add" />
</p>
</form>
如您所见,我什至添加了 $(this).parent('form').submit();
但它仍然不起作用。
using jquery, i am trying to hide the submit button and show an ajax loading gif once it is clicked.
it is working fine, but the form does not get submitted anymore.
heres my jquery code:
$('input[type=submit]').click(function () {
$(this).parent('p').html('<img src="images/ajax-loader.gif" alt="loading" />');
$(this).parent('form').submit();
});
heres my html:
<h1>add</h1>
<form method="post" action="form.php">
<p>
<label for="number">number:</label>
<input type="text" name="number" id="number" size="30" value="" />
</p>
<p style="text-align: center;">
<input type="submit" value="add" />
</p>
</form>
as you can see, i even added $(this).parent('form').submit();
and it still doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: