我遇到困難添加事件點擊與runat =「服務器」的div標記。 這工作完全在IE瀏覽器而不是在瀏覽器,Mozilla ..搜索錯誤:-)如何添加單擊事件div runat服務器
這裏是我試過的代碼
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");
});
你得到什麼錯誤? – Anujith
嘗試onclick =「showAlertAnomalie();」 – Destrictor
當你添加'runat =「server」'時,它會爲div生成一個新的ID。所以$('#btn_alert_anomalie')找不到你想要的完全div div – pktangyue