我目前正在进行网络广播。。。我的页面由jwplayer,ppt幻灯片和一个问题框组成。当直播进行时,我遇到了麻烦,当有人发送问题时,jwplayer重新启动,这个问题只出现在ipad上它在台式机和安卓手机上运行良好。
enter code here
<asp:UpdatePanel ID="uppnl" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Button ID="btnsend" runat="server" CssClass="submitButton" OnClick="btnsend_Click"Text="Send Question" Font-Size="12px" Font-Bold="true" OnClientClick="s2()"/>
</ContentTemplate>
</asp:UpdatePanel>
Script:
<script type="text/javascript">
function s2() {
alert("hello");
$(':text').bind('keydown', function (e) {
//on keydown for all textboxes
if (e.target.className != "searchtextbox") {
if (e.keyCode == 13) { //if this is enter key
e.preventDefault();
return false;
}
else
return false;
}
else
return false;
});
};
</script>