Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我这里有一个带有大蓝色 div 的小提琴。当我单击按钮时,我想选择除 div 之外的所有内容并将其淡出。
我已经尝试过类似这样$("body :not('#myBody')").css({opacity : '0.1'});的事情,但还没有任何效果。
$("body :not('#myBody')").css({opacity : '0.1'});
我还查看了 blockUI 代码,但不能完全理解它。
你们都是如何淡出背景元素的?在此处输入链接描述
您的不透明度周围有错误的 id 和引号。这个小提琴适用于这段代码:
$("body :not('#box')").css({opacity: 0.1});