我有一个显示每个产品摘要的网格视图。当用户单击一行时,我希望他看到一个 jQuery 对话框,该对话框显示有关单击该行的产品的详细信息。
Web 框架是 ASP.NET,所以下面是<td>
元素在浏览器源代码中的样子
<td id="_ctl0_contentMain_gvListOfProducts__ctl13_cRef" align="left"
onclick="getProductInfo(10244);" style="width:10%;cursor:pointer;">Sneakers</td>
我还有一个应该用于对话框的 div
<script type = "text/javascript">
function getProductInfo(id) {
//TO DO: Add jQuery functionality here to display dialog
}
</script>
感谢您的帮助