English 中文(简体)
用方言语将 c子带入Jquery dialog 。
原标题:Send data from cakephp form embeded in a Jquery dialog using a dialog button

我有一个问题,对我来说,我无法说出。 我有附加功能,把观点纳入一个有2个县、发送和取消的支离破碎式方言。 我通过麻省把这一看法装上了四分之四,在我发表方言时,该观点即告完成。 直到现在,所有东西都是ok。 我的问题是,当 j格方言屈服时,我如何发送表格数据?

    $( #addUser ).dialog({
                         autoOpen: false,
                         modal: true,
                         title: "Add new user",
                         resizable: false,
                         width: 370,
                         height: 350,
                         buttons: {
                            "Add user": function() {
                                //$("#addUser").html("Updating data...");
                                //$.ajax({
//                                    async:true,
//                                    type:  post ,
//                                    url: /users/add ,
//                                    data: $(this).parents( form:first ).serialize(),
//                                    success: function (response){
//                                        $( #addUser ).empty().html(response);
//                                    }
//                                })
                               //this part triggers a hidden submit button
                                $( #Submit ).trigger( click );
                                $(this).dialog("close");
                            },
                             "Close": function() {
                                 $(this).dialog("close");
                             }
                         }
       });

$( #Submit ).trigger( click ); 

部分触发了一个隐蔽的提交数据库,该数据库成功地向控制员发送了数据,但一旦数据得到保存,该数据库还将我转至另一个网页。 我知道,这不是实现这一目的的“适当”方法,但我受到压力,这是我能够找到的唯一解决办法。

谁能至少帮助我另一个想法?

Update:

感谢Ish Kumar迅速作出答复。 我尝试了这一设想,如果你注意到所评论的部分,但我没有掌握控制人员的任何数据,而且成功部分也从未执行。 触发点(浮标)是我向控制员获取数据的唯一途径,但这里的问题是,它不是在打开方言ui的主页上更改四分之四,而是把我转向行动观点,就我的情况而言是指数。 我刚刚学习面包店,我确信,有一些东西是我失踪的。 我非常感谢。

我试图实现的是:在主页上,我有一份所有用户名单,在名单的底部,有增加新用户的联系。 新的用户的表格,我想把它放入一个支离破碎的方言。 关于方言,我还有两个州,提交和取消。 but子是 j球dia球 but子,如 j球。 当被点击时,我想在添加行动时将表格中的数据发送给控制人员。 当添加行动完成时,只需在主页上更新我的用户名单而不必再上页。

thank you in advance, denis

问题回答

您在被点击以避免提交两次表格之后,必须打上<代码>。 提交活动的形式如下:

$( #MyForm ).submit(function () {
   $.ajax({      // <-- this is your casual ajax request
         url:  /echo/jsonp ,
         data : $( #MyForm ).serialize(), 
         success : function(data) {
             alert(data);
         }
    });
    return false; // <-- this should stop redirection
});

Demo:

因此,每当你提出启动申请时,都无须重新提出。





相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签