アイコンをクリックすると、クリックされたアイテムに固有のメッセージを表示する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 メソッド名に以前エラーが含まれていました。余分な ')' がありました。