css禁止点击页面元素,只需一句代码即可解决: 1 pointer-events: none; 如果用js来控制的话那就是: 1 $(\'#test\').click(function(){ 2 return false; 3 }); 相关文章: