javascript - jQuery.contains() does not work properly - Stack Overflow

I should get an "alert" in the following case, but I am not getting any "alert". I

I should get an "alert" in the following case, but I am not getting any "alert". I am trying a simple example of jQuery.Contains().

<html>
    <head>
        <script src=".11.2/jquery.min.js"></script>
        <script>
            $(document).ready(function() {
                var alpha = $.contains('body','p') {
                    alert(alpha);
            });
        </script>
    </head>
    <body>
        <p>This is a paragraph.</p>
    </body>
</html>

I should get an "alert" in the following case, but I am not getting any "alert". I am trying a simple example of jQuery.Contains().

<html>
    <head>
        <script src="http://ajax.googleapis./ajax/libs/jquery/1.11.2/jquery.min.js"></script>
        <script>
            $(document).ready(function() {
                var alpha = $.contains('body','p') {
                    alert(alpha);
            });
        </script>
    </head>
    <body>
        <p>This is a paragraph.</p>
    </body>
</html>
Share Improve this question edited Apr 17, 2015 at 6:14 Regent 5,1763 gold badges23 silver badges35 bronze badges asked Apr 17, 2015 at 5:56 DeadpoolDeadpool 8,2409 gold badges48 silver badges95 bronze badges 0
Add a ment  | 

4 Answers 4

Reset to default 10

As per the jQuery documentation the API takes only element nodes (not JavaScript/jQuery objects or selectors)

Check to see if a DOM element is a descendant of another DOM element.

Only element nodes are supported; if the second argument is a text or ment node, $.contains() will return false.

Note: The first argument must be a DOM element, not a jQuery object or plain JavaScript object.

you should change the code to

$(function () {
   alert($.contains(document.body, $("p")[0])) //alerts true
   alert($.contains(document.body, document.getElementsByTagName("p")[0]));    //alerts true
})

Try this:

$(document).ready(function(){
    var alpha = $.contains(document.body,$("p")[0])
    if (alpha) {
         alert(alpha);
    }
});

DEMO

Arguments are always DOM elements, not simple text.

For more details, see this.

jQuery.contains only returns boolean and doe not have a callback. Try this code.

$(document).ready(function(){
    alert($.contains(document.body,$('p')[0]));
});
Use this code you have error on this line (var alpha = $.contains('body','p'){)
<html>
<head>
<script src="http://ajax.googleapis./ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
var alpha = $.contains('body','p');
alert(alpha);
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743623262a4480126.html

相关推荐

  • javascript - jQuery.contains() does not work properly - Stack Overflow

    I should get an "alert" in the following case, but I am not getting any "alert". I

    22小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信