围绕jquery对话框按钮?

时间:2014-10-20 10:58:40

标签: javascript jquery forms dialog

我只是想知道是否可以在 jQuery对话框中围绕按钮放置表单。我在JavaScript我使用过的时候环顾四周并亲自尝试过,但似乎无法让它发挥作用。如果可能的话,我希望它围绕按钮"查看未读" ,因为我需要通过表单将某些内容传递到下一页。

我会张贴一张照片,但我的代表不够高:

这是我的代码:

$("#notifiedDiv").dialog({
     resizable: true,
     height: 300,
     width: 400,
     autoopen: false,
     modal: true,
     buttons: {
         "View unread": function () {

         },
             "Ok": function () {

         }
     }
 });

2 个答案:

答案 0 :(得分:1)

有可能,但我不推荐它。

而是这样做

"View unread": function () {
    $.ajax({
    url:"the action url"
    data: {"name": "value" } /*key values like name+values of your forms input*/
    success:function(data) {
      /*do something with the response*/
    }
    });
},

Check here more info about ajax

答案 1 :(得分:0)

在对话框div中包含表单,不带按钮和链接对话框按钮到此表单:

"View unread": function () {
    $("#notifiedDiv form").submit();
},