<html>
<body>
<div id="container">
<div id="div1">...</div>
<div id="div2">...</div>
<div id="div3">...</div>
</div>
<div id="other-div">...</div>
</body>
</html>
JS
jQuery('html, body').on('touchstart touchmove', function(e){
e.preventDefault();
});
,如何排除#div1
及其所有內容/兒童從這一選擇的('html, body')
?
我試圖
jQuery('html, body :not(#div1)')
也
jQuery('html, body').not(document.getElementById("#div1"))
謝謝!
這個問題問得好。請看帖子。謝謝 – guest271314