0

在 MVC 中,我有最简单的视图。我添加了一个按钮。这个按钮的作用是简单地提醒(“文本”)。

<button id="btn-test" onClick="alert( 'test')">test</button>

或者这个 javascript

 $("#btn-refresh").click(function () {
        //      refreshScheduler()
        alert("SSSSSSSS");
        return false;
    });

当警报关闭时,视图会刷新!!!。我不想刷新页面。我应该怎么做才能使单击的执行仅通过 anyview refresh 执行?我不需要,也不需要空间视图,也不需要目标。

谢谢

4

1 回答 1

0

Two issues I can see:

  • Remove the onClick event from the button, and
  • the selector for the jQuery click handler is incorrect it should be #btn-test and not #btn-refresh for instance

    $("#btn-test").click(function (e) { // refreshScheduler() alert("SSSSSSSS"); e.preventDefault(); });

于 2012-11-30T12:43:09.700 回答