javascript - 按钮仅在双击后切换

标签 javascript jquery python html

下面是使用网页控制led开/关的脚本。该脚本链接到实际控制 LED 的 Python。一切正常,但问题是按钮只有在双击后才会切换到右侧,即“ON”位置。

  1. 第一次单击时,复选框会被选中,LED 会亮起,但会滑动 不向右移动。

  2. 第二次单击时,幻灯片向右移动。

    而单击按钮即可切换到左侧(没有问题)。有人可以帮忙吗?

//HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>{{ title }}</title>
        <script src="https://code.jquery.com/jquery-3.1.0.js"></script>

//JavaScript:

<script>
   $(document).ready(function(){
   $("#test").click(function(){
   if ($(this).is(":checked"))
   {
      $('#On').get(0).click();
   }
   else
   {
      $('#Off').get(0).click();
    }
  });
});
</script>

//CSS:

<style>
.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select:   none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 20px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0;    line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial,    sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #34A7C1; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 56px;
    border: 2px solid #999999; border-radius: 20px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}
</style>
</head>

//HTML:

<body>
  <div class="onoffswitch"> 
    <input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="test"> 
    <label class="onoffswitch-label" for="test"> 
    <span class="onoffswitch-inner"></span>
    <span class="onoffswitch-switch"></span> 
    </label> 
  </div>
  <h1>
      <a href="/On#On" id="On"></a>
  </h1>
  <h1>
      <a href="/Off#Off" id="Off"></a>
  </h1>

</body> 
</html>

最佳答案

$('#On').click();$('#Off').click(); 不需要 get( 0) 在其中

$(document).ready(function() {
  $("#test").click(function() {
    if ($(this).is(":checked")) {
      $('#On').click(); 
    } 
    if (!$(this).is(":checked")) {
     $('#Off').click(); 
    }
  });
   $('#On').click(function(){
      console.log('id On clicked')  
   });
   $('#Off').click(function(){
      console.log('id Off clicked')  
   });
});
.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #999999;
  border-radius: 20px;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #34A7C1;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #EEEEEE;
  color: #999999;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 2px solid #999999;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
  right: 0px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<body>
  <div class="onoffswitch">
    <input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="test">
    <label class="onoffswitch-label" for="test"> 
    <span class="onoffswitch-inner"></span>
    <span class="onoffswitch-switch"></span> 
    </label>
  </div>
  <h1>
    <a href="/On#On" id="On"></a>
  </h1>
  <h1>
    <a href="/Off#Off" id="Off"></a>
  </h1>

</body>

关于javascript - 按钮仅在双击后切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42871238/

相关文章:

javascript - 如何在我的应用程序中循环图像

javascript - 当第一个 "things"返回之前总数未知时,在循环中批量运行大量异步 "thing"的优雅方法?

javascript - 根据单选按钮从模板创建表单

python - Django HttpResponse 对在线 MP3 文件

python - 使用 django-stdimage 时是否可以删除 'Currently' 标签?

Python 3 - CSV 阅读器到达文件末尾后,CSV 编写器循环不会关闭

javascript - 如何在点击时获取动态元素的ID?

javascript - 具有 0.01 个步骤的数字输入为 angularjs 中的某些值提供未定义

javascript - 如何在返回函数中返回两个 map 值 - React js

javascript - 是否有其他选项可以包含 javascript 中的 'input' 元素而不使用单引号?