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.
我正在使用以下方法在javascript中调用按钮的点击事件。
__doPostBack('<%= btn_hid.UniqueID %>');
但这导致我犯另一个错误
无法修改 Controls 集合,因为该控件包含代码块(即 <% ... %>)。
您能否建议我在回发期间以其他方式在 javascript 中调用按钮的单击事件?
您可以尝试使用click method基于GetElementById方法
click method
GetElementById
document.GetElementById('<%= btn_hid.ClientID %>').click()