我在会议上遇到困难,在带有 runat =“server”的 div 标签上添加一个事件。这在 IE 上完美运行,但不适用于 chrome、mozilla .. 搜索错误:-)
这是我尝试过的代码
JAVASCRIPT:
function showAlertAnomalie() {
alert("Handler test");
}
ASP:
<div id="btn_alert_anomalie" class="alertAnomalieClass" runat="server" onclick="showAlertAnomalie" >
<asp:Label runat="server" Text="Alert annomaly" Font-Bold="true" Font-Size="12" ForeColor="White" style="cursor:pointer;"></asp:Label>
</div>
我也试过这个但没有用..:
$("#btn_alert_anomalie").click(function () {
alert("Handler test");
});