jquery 表单插件

发布于 2024-12-08 02:17:15 字数 731 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-12-15 02:17:15
$("registerpt3").ajaxForm({

……应该是……

$("#registerpt3").ajaxForm({
$("registerpt3").ajaxForm({

...should be...

$("#registerpt3").ajaxForm({
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文