jQuery modal window removes elements from my form

前端 未结 6 1924
隐瞒了意图╮
隐瞒了意图╮ 2021-02-08 14:00

jQuery, when i use it to create a modal window which contains form elemets, it takes out those elements when i submit the form.

example of the form:

<         


        
相关标签:
6条回答
  • 2021-02-08 14:19

    I'm not sure what dialog box plugin you're using, but I would suspect that the dialog box plugin is pulling the DIV out of the form and placing it into the body of the page, so It can bring the box in front of the page, outside of the form element.

    So to rephrase, in order for the dialog box plugin to make your dialog appear in front of all the content on your page, it needs to remove it from whatever element it is sitting in, no matter if it's a form or anything else.

    0 讨论(0)
  • 2021-02-08 14:21

    From http://blog.coreycoogan.com/2010/12/01/jquerys-dialog-and-form-problems/

    Tie it to the form by doing $("mydialog").parent().appendTo($("form:first")).

    Note that you have to this call after you already called $("mydialog").dialog()

    0 讨论(0)
  • 2021-02-08 14:26

    I just had the same problem. I solved it by adding another

    <div id="beforesubmit" style="display:none"></div> 
    

    at the end (but inside) of the form and then you have to add this to jQuery:

    $("form").submit(function() {
        $("#add_photo").prependTo("#beforesubmit");
    });
    

    This will make sure that before the form is submit your dialog div will be put back in between the form tags. Thanks to arnorhs I came to this solution.

    Cheers!

    0 讨论(0)
  • 2021-02-08 14:27

    This article describes how to solve your problem:

    You’ll see that the content we had mid-way through our page has been marked up with additional classes and, most importantly, placed at the bottom of the page immediately before the closing tag. Why is this important? Because it also means that any ASP.Net controls you place within this dialog will also appear at the bottom of the page, outside of the page’s tag. This means you won’t be able to get a handle to them on postback.

    What’s the solution? Well, there are two options:

    1. Move the elements back to the form, and manually submit when the button is clicked
    2. Clone the elements when you create the dialog, then clone the values back, trigger click on the original button (or, if you only have one or two values to post back, simply assign the values to an ASP.Net hidden field control).
    0 讨论(0)
  • 2021-02-08 14:34

    As seen in the answer for this question, jQuery dialog has a field appendTo, that can be used to configure where to put your dialog (div-wise) on initialization.

    This seems to be the least ninja-workaround version to tackle the problem.

    0 讨论(0)
  • 2021-02-08 14:37

    The form needs to be inside the div. That's how it is in all the Dialog examples. Not sure how you're going to do that with the title and url inputs not being on the dialog. Couldn't you put them on it too?

    This wouldn't have the problem:

    <div id="add_photo" style="width: auto;" class="ui-dialog-content ui-widget-content"  title="Add Photo"> 
      <form enctype="multipart/form-data" action="/system/article/add/" class="from" method="post"> 
        <label for="article_title" class="required">Title:</label> 
        <input class="formfield" id="article_title" name="article_title" value="" type="text"> 
    
        <label for="url" class="required">Url:</label> 
        <input class="formfield" id="url" name="url" value="" type="text"> 
    
        <label for="photo_title" class="optional">Photo title:</label> 
        <input class="formfield" id="photo_title" name="photo_title" value="" type="text">
        <label for="photot" class="optional">Photo thumb:</label> 
        <input type="file" name="photot" id="photot" class="formfield">
        <label for="photo_checkbox" class="optional">Include lighbox?</label> 
        <input name="photo_checkbox" value="0" type="hidden"> 
        <input class="checkbox" id="photo_checkbox" name="photo_checkbox" value="1" type="checkbox"> 
        <label for="photo_big" class="optional">Photo:</label> 
        <input type="file" name="photo_big" id="photo_big" class="formfield"> 
      </form>
    </div>
    
    0 讨论(0)
提交回复
热议问题