Jquery-ui $("#button")。点击不要随意工作

时间:2015-10-31 09:05:46

标签: javascript jquery jquery-ui

随机时间分数不起作用的按钮。我不明白为什么? js代码有问题吗?尝试用chrome和ie

http://live.tennisofficial.ru/dev/operator/mobile/chair2.php#live

P.S。一些PHP错误couz我手动关闭授权。 看起来有很多代码,但只有很多if <#p>

添加:奇怪,我在pointOne中评论了一切,除了两个函数 console.log("Point1 clicked");

仍然没有工作S:

添加:删除所有内容......仍有问题

已添加:它适用于<a>。那么buttton力学有问题吗?我会改变<a>的按钮,但仍然有趣的是为什么按钮不起作用?按钮点击之间我听到约300毫秒的smth,这是一个问题吗?

<script>

$(document).on("pagebeforeshow","#live",function(){ // When entering page live

  $("#pointOne").val("0");
  $("#pointTwo").val("0");
  $("#pointOne").button("refresh");
  $("#pointTwo").button("refresh");
  $point1 = 0;
  $point2 = 0;
  $sets1 = new Array (0, 0, 0, 0, 0, 0);
  $sets2 = new Array (0, 0, 0, 0, 0, 0);
  $score = new Array(0, 15, 30, 40, "Ad", "-", "Ad");
  $currentset = 1;


  //reload score
  $("#gamescore").text("0:0");
  $("#gamescore2").text("Sets: 0:0 0:0 0:0");
});

/*get id of match*/

/*END OF get id of match*/


$("#pointOne").on("click", function() {
    console.log("Point1 clicked");

});

$("#pointTwo").on("click", function() {
    console.log("Point2 clicked");

});



</script>

1 个答案:

答案 0 :(得分:0)

尝试添加:

 $("#pointOne").click(function(e) {
                    e.preventDefault();
                    e.stopImmediatePropagation();
 ...