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 webform 中有一个按钮服务器控件。
所以在我的网络表单中,按钮有一个服务器事件处理程序。只有当用户在弹出的 onclient click 对话框中添加备注时,我才想触发该事件。
所以在EditRemark() jquery 函数中,用户编辑了一个注释后,我想注册按钮控件的服务器处理程序事件处理程序并调用它。
想知道这是否可能,或者是否有解决方法?
您可以尝试从 jquery 中单击您的按钮,该按钮应调用您的事件处理程序,如下所示:
$('#button_id').trigger('click');