美文网首页
input check box 修改为手动控制选中切换

input check box 修改为手动控制选中切换

作者: newszhu | 来源:发表于2022-08-04 17:43 被阅读0次

    需求描述:

    点击CheckBox后Web调取原生插入日历功能,等待插入结果返回后动态改变选中状态。

    遇到的难题:

    样式控制点击后自动执行切换,尝试多次无法实现。

    解决思路:

    input设置为disabled。在input外包裹一层span,点击方法放在外面。

    通过jQuery动态控制组件的选中状态

    $('#box').attr('checked',true);

    $('#box').attr('checked',false);

    补充:

    相关文章

      网友评论

          本文标题:input check box 修改为手动控制选中切换

          本文链接:https://www.haomeiwen.com/subject/ykzywrtx.html