如何在mvc 4按钮上单击

时间:2016-03-10 05:31:36

标签: javascript jquery asp.net-mvc-4

我正在做一个mvc项目,我有一个按钮。当我点击按钮时,会出现一个带文本框和按钮的弹出窗口。我尝试如下。当页面首次仅在页面中加载所需的文本框和按钮时(而不是在单击按钮时显示),而不是弹出窗口。这就是我尝试过的。

<head>
 <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">

    <script src="//code.jquery.com/jquery-1.10.2.js"></script>

    <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

    <link rel="stylesheet" href="/resources/demos/style.css">
</head>

我从https://jqueryui.com/dialog/#modal-form(many代码行复制的样式信息,所以我不在这里发帖 这是我的脚本和弹出代码。

<div id="dialog-form" title="Create new user">
    <form>
        <fieldset>

            <label for="name">Enter your Comments Here</label>

            <input type="text" name="name" id="name" value="Jane Smith" class="text ui-widget-content ui-corner-all">
            <!-- Allow form submission with keyboard without duplicating the dialog button -->

            <input type="submit" tabindex="-1" style="position:absolute; top:-1000px">

        </fieldset>

    </form>

</div>
<script>
    $("#Delete").button().on("click", function () {

        dialog.dialog("open");

    });


</script>

这是我的mvc代码。

@using (Html.BeginForm("Index", "TestRendering", FormMethod.Post))
    {
   <td scope="col"><input type="button" id="Delete" class="btn btn-primary btn-cons red" value="Delete" /></td>

    }

我在这个过程中出错了吗?感谢。

1 个答案:

答案 0 :(得分:0)

试试这个

<input type="button" id="Delete" class="btn btn-primary btn-cons red" value="Delete" />

<div id="dialog-form" title="Create new user">
  <form>
    <fieldset>
      <label for="name">Enter your Comments Here</label>
      <input type="text" name="name" id="name" value="Jane Smith" class="text ui-widget-content ui-corner-all">
      <!-- Allow form submission with keyboard without duplicating the dialog button -->

      <input type="submit" tabindex="-1" style="position:absolute; top:-1000px">
    </fieldset>
  </form>
</div>

<强>的JavaScript

$('#Delete').click(function() {
  $('#dialog-form').dialog('open');
});

jQuery(document).ready(function() {
  jQuery("#dialog-form").dialog({
    autoOpen: false,
    modal: true,
    open: function() {
      jQuery('.ui-widget-overlay').bind('click', function() {
        jQuery('#dialog').dialog('close');
      })
    }
  });
});

Updated Demo