2

我试图让一个图标在单击时触发一个 jQuery 对话框,该对话框显示特定于被单击项目的消息。由于我是 jQuery 新手,我绝对没有运气。有人可以告诉我我做错了什么吗?

来自 ASP MVC 视图的代码部分

    <td>
    @if (!String.IsNullOrWhiteSpace(item.Notes))
    {
        <span id="notes" onclick='GetNotes(@id);'>
            <img src="@Url.Content("~/Content/images/magnify.gif")" alt="Show Notes" />
        </span>           
    }

        <div id="@id" style="display:none;">
            @Html.DisplayFor(modelItem => item.Notes)
        </div>       
    </td>

jQuery代码:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="@Url.Content("~/Scripts/jquery.tablesorter.min.js")" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function () {
        $("#thetable").tablesorter();
    }
    );

    function GetNotes(id) {
        $(function GetNotes() {
            $("#" + id + "\"").dialog();
        });
    }

</script>

编辑

onlick 方法名称以前包含错误。有一个额外的')'。

4

1 回答 1

2

GetNotes你在这个函数中有一些非常糟糕的javascript 。试试这样:

function GetNotes(id) {
    $('#' + id).dialog();
}

还要在浏览器中观看您的 javascript 调试控制台。它会告诉你错误。

于 2013-01-17T21:52:29.230 回答