我目前正在进行网络直播...我的网页由jwplayer,ppt幻灯片和一个问题框组成。 当直播时,我遇到麻烦,当有人发送jwplayer重新启动的问题时,这个问题只出现在ipad上。 它在桌面和Android手机上运行良好。
答案 0 :(得分:-1)
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>