确定按钮对话框没有工作

时间:2015-02-20 05:43:11

标签: c# jquery html asp.net jquery-ui-dialog

我使用jQuery作为对话框。当我试图删除它上面的一些元素时,这很奇怪。当我点击ok按钮时。 diaolog box甚至无法重定向。什么都没发生。

这是我在对话框中包含的第一个内容,它可以正常工作。

 <input type="button" class="ui-state-default ui-corner-all" id="indexbutton" onclick="book_tickets(this)" value="Book Seat" />
    <div id="dialog" title="Time Limit">
       <table>
           <tr>
               <td>Name</td>
               <td>:</td>
               <td><input type="text" id="txtName" value="" /></td>
           </tr>
           <tr>
               <td> End of Time </td>
               <td>:</td>
               <td><input type="text" style="width: 100px;" id="timepicker_7" value="01:30 PM" /></td>
           </tr>
       </table>

    </div>

当我尝试删除txtName时,OK按钮无效或无法重定向到其他网页。 这是在我删除txtName元素之后。

<table>               
           <tr>
               <td> End of Time </td>
               <td>:</td>
               <td><input type="text" style="width: 100px;" id="timepicker_7" value="01:30 PM" /></td>
           </tr>
       </table>

这就是我编写对话框代码的方式

$(function () {
$("#dialog").dialog({
    autoOpen: false,
    width: 400,
    buttons: [
        {
            text: "Ok",
            click: function () {
                ShowArrData(lObjSeat);
                $(this).dialog("close");
            }
        },
        {
            text: "Cancel",
            click: function () { $(this).dialog("close"); }
        }
    ]
  });
});

这是我的showobjdata函数

function ShowArrData(o) {
for (var i = 0; i < o.length; i++) {
    seatname = o[i].Name;
    time = jQuery('#timepicker_7').val();

    var guest = document.getElementById("txtName").value;
    console.log(guest);

    var sid = btnId;
    if (sid == 'indexbutton') {
        var url = "CheckSeat.aspx?noSeat=" + encodeURIComponent(lObjSeat[0].Name) + "&endtime=" + encodeURIComponent(time);
        window.location.replace(url);
    } else {
        var url = "AdminCheckSeat.aspx?noSeat=" + encodeURIComponent(lObjSeat[0].Name) + "&endtime=" + encodeURIComponent(time) + "&guest=" + encodeURIComponent(guest);
        window.location.replace(url);
    }
   }
 }

我的showobjdata流程是,如果通过索引访问网站,则转到checkseat.aspx,否则转到admin。

是什么事?

1 个答案:

答案 0 :(得分:0)

替换条款var guest = document.getElementById("txtName").value

中的else

因为我把它从else中删除了,所以当条件为guest=null时,showarrdata就没有做任何事情。