通过jQuery发布发布表单 - 没有控制台错误

时间:2012-05-09 02:26:35

标签: javascript jquery ajax forms

我正在尝试通过jQuery .post()发布一个表单,并且它不能正常工作。我从控制台得不到任何东西,而且非常令人沮丧。请求经验丰富的JS用户提供帮助。非常感谢您的帮助!

注意:此表单由CodeIgniter构建,使用Form Helper和HTML常规路由完美发布。 JS / jQuery方法无法正常工作。

形式:

    <form class="nice custom" id="create_form">

                    <h3>Create Event</h3>

                    <label for="intention"><strong>Intention:</strong></label>
                    <?php $intention_attributes='style="width: 100%; " class="show-on-phones" id="intention_dropdown"'; ?>
                    <?php echo form_dropdown('intention', $intention, 'Select Intention', $intention_attributes ); ?>
                    <div class="custom dropdown show-on-desktops" style="width: 100%; ">
                        <a href="#" class="current">Select Intention</a>
                        <a href="#" class="selector"></a>
                        <ul style="width: 100%; ">
                            <li>Select Intention</li>
                            <li>Option 1</li>
                            <li>Option 2</li>
                            <li>Option 3</li>
                            <li>Option 4</li>
                            <li>Option 5</li>
                        </ul>
                    </div>

                    <label for="action"><strong>Action:</strong></label>
                    <?php echo form_input($action); ?>

                    <label for="date_of_event"><strong>Date:</strong></label>
                    <?php echo form_input($date_of_event); ?>

                    <label for="repeat_event"><strong>Repeat:</strong></label>
                    <?php $repeat_event_attributes='style="width: 100%; " class="show-on-phones" id="repeat_event_dropdown"'; ?>
                    <?php echo form_dropdown('repeat_event', $repeat_event, 'Never', $repeat_event_attributes); ?>
                    <div class="custom dropdown show-on-desktops" style="width: 100%; ">
                        <a href="#" class="current">Never</a>
                        <a href="#" class="selector"></a>
                        <ul style="width: 100%; ">
                            <li>Never</li>
                            <li>Every Day</li>
                            <li>Every Week</li>
                            <li>Every Two Weeks</li>
                            <li>Every Month</li>
                            <li>Every year</li>
                        </ul>
                    </div>

                    <label for="end_repeat_event"><strong>End Repeat:</strong></label>
                    <?php echo form_input($end_repeat_event); ?>

                    <br />

                    <input style="width: 100%; " type="submit" name="submit" class="medium radius blue button" value="Create" id="create_button" />
</form>

JavaScript的:

// Submit Create Form
    $('#create_form').live('submit', function() {
        var data = $('#create_form').serialize();
        var url = $(this).attr('action');
        $.post(url, data, function() {
            document.location.reload();
        });
        return false;
    }); // End

3 个答案:

答案 0 :(得分:1)

您的表单没有操作值:

<form class="nice custom" id="create_form">

即使你试图得到一个:

var url = $(this).attr('action');

此外,请避免在此处使用$.live

  

从jQuery 1.7开始,不推荐使用.live()方法。使用.on()附加事件处理程序。旧版jQuery的用户应优先使用.delegate() {。{1}}。

     

- http://api.jquery.com/live/

答案 1 :(得分:0)

尝试将提交按钮的名称更改为btnSubmit。我过去曾经提到过提交按钮提交的问题。

谢谢,

答案 2 :(得分:0)

此外,按控制台输出选项卡(webkit浏览器)顶部的黑点按钮。这将在页面加载之间保留日志消息。