मेरे पास निम्न कोड है।
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</head>
<div id="hello">Hello <div>Child-Of-Hello</div></div>
<br />
<div id="goodbye">Goodbye <div>Child-Of-Goodbye</div></div>
<script type="text/javascript">
<!--
function fun(evt) {
var target = $(evt.target);
if ($('div#hello').parents(target).length) {
alert('Your clicked element is having div#hello as parent');
}
}
$(document).bind('click', fun);
-->
</script>
</html>
मुझे उम्मीद है कि Child-Of-Helloक्लिक किए $('div#hello').parents(target).lengthजाने के बाद ही> 0 वापस आएगा।
हालाँकि, यह तब होता है जब भी मैं कहीं भी क्लिक करता हूं।
क्या मेरे कोड में कुछ गड़बड़ है?