Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 StackOverflow 的一条旧消息中发现了以下代码:
$("#<%=GridView1.ClientID%> tr").click(function(){ alert("Row clicked"); });
上面的代码应该在用户单击 GridView 的一行时调用警报。我不明白的是如何定义(在我的 GridView 中)上面代码中称为“ClientID”的内容。什么是“客户 ID”?
此代码<%=GridView1.ClientID%>将在服务器上运行,并将最终呈现为网格视图的 ID,因此在页面上您最终可能会看到这个
<%=GridView1.ClientID%>
$("#GridView1 tr").click(function(){ alert("Row clicked"); });
ClientID给出了 GridView 在 html 页面上使用的最终 ID 。
ClientID