jquery 表单插件
我正在尝试使用 jquery.form.js,但由于某种原因我无法调用我的 php 脚本。至少我无法判断自己是不是。我这样做看起来不正确吗?
$('#profilepicbutton').live('change', function(){
$("#preview").html('');
$("#preview").html('<img src="loader.gif" alt="Uploading...."/>');
$("registerpt3").ajaxForm({
target: '#preview'
}).submit();
});
表单...
<form id="registerpt3" action="register3.php" method="post">
<input name="profilepicinput" type="file" id="profilepicbutton" />
<button type="submit" class="button">Save</button>
</form>
我似乎从未调用过我的 php 函数。上面已正确标记。如何使用 Jquery.Form.js 调用操作?我这样做错了吗?
I am trying to use jquery.form.js and for some reason I am unable to call my php script. At least I can't tell if I am or not. What does it look like I am doing this incorrectly?
$('#profilepicbutton').live('change', function(){
$("#preview").html('');
$("#preview").html('<img src="loader.gif" alt="Uploading...."/>');
$("registerpt3").ajaxForm({
target: '#preview'
}).submit();
});
The Form...
<form id="registerpt3" action="register3.php" method="post">
<input name="profilepicinput" type="file" id="profilepicbutton" />
<button type="submit" class="button">Save</button>
</form>
I never seem to call my php function. Which is corectly labeled above. How do you call an action using Jquery.Form.js? Am I doing this incorrectly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
……应该是……
...should be...