我有 p 标签,里面有图片,我希望用户只能悬停图片标签。目前,当用户悬停图像时,它会触发段落mouseenter
并且图像mouseenter
永远不会触发。
<p>Some text.. <img src="(URL)" /></p>
我目前正在使用鼠标输入。
// Hover over a paragraph
$("article p").mouseenter(function () {
window.console.log("paragraph trigger");
self.showControls(this, "p");
});
// Hover over an image in a paragraph
$("article p img").mouseenter(function (e) {
e.stopPropagation();
window.console.log("image trigger");
self.showControls(this, "img");
});
如何进行设置,以便用户可以将鼠标悬停在段落或其中的图像上,而不会相互影响?