在切换按钮切换时显示消息

时间:2015-09-30 05:00:22

标签: jquery checkbox twitter-bootstrap-3 bootstrap-switch

我正在使用Bootstrap Switch来切换切换开关中的复选框。

现在我想根据开关是ON还是OFF来显示不同的信息。听起来很简单......但我似乎无法使其发挥作用:(

我的HTML:

<div class="approve-delivery">
  <label for="config-email" class="control-label col-xs-5">
    Do you want to send out email?
  </label>
  <input type="checkbox" id="config-email" onclick="ToggleSwitchMessage('config-email', 'enable-msg', 'disable-msg')" checked/>
</div>

<div class="email-config-msg">
  <p id="enable-msg">
      All emails will be sent.
  </p>
  <p id="disable-msg">
      No email will be sent.<br/>
      Please remember, you must turn email ON again if you want emails to
      be sent during this login session.
  </p>
</div>

我的jQuery:

function ToggleSwitchMessage(checkId, firstCommentId, secondCommentId) {
  var check_box = document.getElementById(checkId)
  var first_alert = document.getElementById(firstCommentId);
  var second_alert = document.getElementById(secondCommentId);

  if (check_box.checked == true) {
    first_alert.style.visibility = "visible";
    first_alert.style.display = "inline-block";
    second_alert.style.visibility = "hidden";
    second_alert.style.display = "none";
  } else {
    first_alert.style.visibility = "hidden";
    first_alert.style.display = "none";
    second_alert.style.visibility = "visible";
    second_alert.style.display = "inline-block";
  }
}

这是我的工作JSFiddle

同样,这就是我要做的事情:

  • 基于选中/取消选中的复选框,加载时应在页面上显示正确的消息
  • 然后,如果更改了复选框的选项,则应显示相应的消息

我希望我有意义(英语不是我的第一语言)!如果这是重复的问题,我很抱歉,在这种情况下,请提供Q / A的URL。

提前感谢您的时间和帮助!!

2 个答案:

答案 0 :(得分:1)

您的代码是工作伙伴,只需要在复选框上替换事件,点击更改即可。因为当您选中/取消选中复选框时会触发更改事件。

<input type="checkbox" id="config-email"
    onchange="ToggleSwitchMessage('config-email', 'enable-msg', 'disable-msg')" checked/>

答案 1 :(得分:0)

此代码的问题在于它尝试创建元素的onClick事件而不是onChange。如果将其更改为onChange,它可以正常工作。

<input type="checkbox" id="config-email"
    onChange="ToggleSwitchMessage('config-email', 'enable-msg', 'disable-msg')" checked/>

根据在启动本身上显示消息,在document.ready函数中使用相同的参数调用此函数。

更新您的评论:

以下修改过的代码在您的小提琴中完美运作。

$(document).ready(function () {
    $("input#config-email").bootstrapSwitch( {
    onText: 'Enable',
    onColor: 'primary',
    offText: 'Disable',
    offColor: 'warning',
    size: 'normal'
  });

    ToggleSwitchMessage('config-email', 'enable-msg', 'disable-msg')
});