前端之家收集整理的这篇文章主要介绍了
jquery – 禁用单击divs元素,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有div进入编辑模式… div包含按钮,
链接.在编辑模式下,我想禁用所有这些,并在我
退出编辑模式时启用它们.
我试过了
$("#container").children().disableSelection();
但它不起作用:-(
编辑模式输入:
$("#container").children().bind('click',function(){ return false; });
编辑模式退出:
$("#container").children().unbind('click');
原文链接:https://www.f2er.com/jquery/177056.html