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.
我在 asp.net 页面上有多个复选框以及用户控件。我需要基于某些复选框使用 jquery 启用和禁用用户控件的 gridview 和其他一些控件。
如何获得用户控件的控制权?
使用您提供的 html,如果您希望禁用网格内的复选框 -
假设 idgridview是grdView
gridview
grdView
$("#grdView").children(":checkbox").prop("disabled",true);
如果是文本框,
$("#grdView").children("input[type='text']").prop("disabled",true);
假设如果网格视图 id 是 grv
使用简单的访问
$('#grv')