为我的代码创建弹出警告框

时间:2016-06-24 13:08:23

标签: javascript html

如何在弹出框中显示此info() ???

以上代码是从警报框中的系统构建生成的......

function BuyNow(Id, Price, Qty, Paymentmode) {
  var Info = "Ticket Id: " + Id;
  Info += "\nPrice: " + Price;

  var Qty = 1;
  if ($("#Qty" + Id)) {
    Qty = parseInt($("#Qty" + Id).val());
  }

  Info += "\nQty: " + Qty +
          "\nNet Amount: " + Price.substring(0, 1) + (parseFloat(Price.substring(1).replace(/[^\d\.\-\ ]/g, '')) * Qty +
          "\npayment: " + Paymentmode);

  alert(Info);
}

1 个答案:

答案 0 :(得分:0)

您可以使用jquery.ui模式对话框来完成。

首先将其添加到您的HTML中:

 <div id="modalInfo" style="display:none">
        <label id="info" />
  </div>

然后在您的函数中使用info值设置Info标签,然后您可以显示模态。

$("#info").text(Info);
$("#modalInfo").dialog();

不要忘记添加对jquery和jquery.ui的引用(你必须先下载它们)

    <script src="~/Scripts/libs/jquery/jquery-1.11.1.js"></script>
    <script src="~/Scripts/libs/jquery/jquery-ui.js"></script>