как шрифт пользовательского интерфейса Я загружаю это
<head>
<meta charset="utf-8" />
<script src="/javascripts/jquery-ui-1.12.1.custom/external/jquery/jquery.js"></script>
<script src="/javascripts/jquery-ui-1.12.1.custom/jquery-ui.js"></script>
<link href="/javascripts/jquery-ui-iconfont-master/jquery-ui.icon-font.css" rel="stylesheet" type="text/css" />
</head>
на странице, которая используется для игрока
<div id="iconStop" class="ui-icon ui-icon-stop">icon</div>
<div id="iconRecord" class="ui-icon ui-icon-radio-on">icon</div>
<div id="iconPause" class="ui-icon ui-icon-pause">icon</div>
, чем
function sendCommand(name){
sendJson('mode:'+name);
}
window.onload = function () {
document.getElementById("iconStop").addEventListener("click",function(){ sendCommand('stop'); } );
document.getElementById("iconRecord").addEventListener("click",function(){ sendCommand('record'); } );
document.getElementById("iconPause").addEventListener("click",function(){ sendCommand('pause'); } );
}
странная вещьявляется то, что щелчок работает только иногда.Ручной вызов sendCommand ('any') работает постоянно!Есть идеи, почему это не всегда работает?