我的HTML div中有一个类标记,另一个有两个看起来像一个类的类。
<body>
<div class="ad-container left">
<div class="ad-container">
<div class="mobile-ad larger">
<div class="mobile-ad">
</body>
在jQuery中使用not选择器支持所有4个div并且不忽略正文中的任何其他内容的正确方法是什么。
我目前有
$('body:not(.ad-container,.ad-container.left,.mobile-ad.larger,.mobile-ad)')
似乎没有任何问题。
但有些东西告诉我,我需要用逗号分隔左边和更大的类到单独的元素。
像这样的东西
$('body:not(.ad-container,.left,.mobile-ad,.larger)')
以下是完整代码:
$(function () {
$('body:not(.ad-container,.ad-container.left,.mobile-ad.larger,.mobile-ad)').on('selectstart', function (event) {
event.preventDefault();
});
});
它用于禁用左侧双击选择,但仍然可以点击广告。 我应该使用哪一个?
答案 0 :(得分:2)
我最终使用
$('body :not(.ad-container, .mobile-ad)')