单击 linkButton 时显示模态
Show Modal on click of linkButton
$(document).on("click", "[id*=lnkView]", function () {
$("#resultId").html($(".ResultId", $(this).closest("tr")).html());
**//$("#name").html($(".Name", $(this).closest("tr")).html());
//$("#description").html($(".Description",$(this).closest("tr")).html());**
$("#dialog").dialog({
title: "Analyze Result",
buttons: {
Ok: function () {
$(this).dialog('close');
}
},
modal: true
});
return false;
});
</script>
这是我的脚本。
如何 link 将其写入数据库?
我对 javascript 完全陌生。
为了将数据链接到数据库,您需要中间层,可以是 ASP.NET Web API、ASP.NET MVC 或任何其他具有 MVC 模式的 PHP可以 return Json.
的应用程序
您可以使用 JQuery $.ajax() 函数将 URL 命中您的 Web 应用程序中的 Action 并简单地使用它。
这些是一些资源,您应该从:
http://www.sitepoint.com/use-jquerys-ajax-function/
jQuery: Return data after ajax call success
$(document).on("click", "[id*=lnkView]", function () {
$("#resultId").html($(".ResultId", $(this).closest("tr")).html());
**//$("#name").html($(".Name", $(this).closest("tr")).html());
//$("#description").html($(".Description",$(this).closest("tr")).html());**
$("#dialog").dialog({
title: "Analyze Result",
buttons: {
Ok: function () {
$(this).dialog('close');
}
},
modal: true
});
return false;
});
</script>
这是我的脚本。
如何 link 将其写入数据库?
我对 javascript 完全陌生。
为了将数据链接到数据库,您需要中间层,可以是 ASP.NET Web API、ASP.NET MVC 或任何其他具有 MVC 模式的 PHP可以 return Json.
的应用程序您可以使用 JQuery $.ajax() 函数将 URL 命中您的 Web 应用程序中的 Action 并简单地使用它。
这些是一些资源,您应该从: http://www.sitepoint.com/use-jquerys-ajax-function/
jQuery: Return data after ajax call success