The solution is as follows:
First, determine whether the current node of the event, that is, jquery's currentTarget, is included in the target, that is, the following extension $.containsNode.
Then, in the mouseover and mouseout events when hover is called, it is judged whether the currentTarget is included in the target, that is, $.fn.fhover extension
The following is the relevant code:
$.containsNode = function(parentNode, childNode) {
if (parentNode.contains) {
return parentNode != childNode && parentNode.contains(childNode);
} else {
return !!(parentNode.compareDocumentPosition(childNode) & 16);
}
}
$ .fn.fhover = function(over, out) {
this.hover(function(e) {
if ($.containsNode(e.target, e.currentTarget)) {
return;
}
over.call(this, e);
}, function(e) {
if ($.containsNode(e.target, e.currentTarget)) {
return;
}
out.call(this, e);
});
return this;
}