zoukankan      html  css  js  c++  java
  • jQuery与javascript对照学习(获取父子前后元素)

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
        
    <title>jQuery与javascript对照学习(获取父子前后元素)</title>
        
    <style type="text/css">
            .c1
    {background-color:green;padding:20px;}
            .c2
    {background-color:red;padding:20px;}
            .c1 div
    {background-color:gray;}
        
    </style>
        
    <script type="text/javascript" src="style/jquery-1.3.2.min.js"></script>
        
    <script type="text/javascript">
            
    function fNext(obj){//许多时候需要元素之间没有间隙才能取到
                //alert(obj.nextSibling.id);
                alert(jQuery(obj).next().attr("id"));//传递this,通过$(obj)转化为jQuery对象
            }
            
    function fPrev(obj){
                
    //alert(obj.previousSibling.id);
                alert(jQuery(obj).prev().attr("id"));
            }
            
    function fParent(obj){
                
    //alert(obj.parentNode.className);
                //alert(jQuery(obj).parent().attr("class"));
                jQuery(obj).parent().removeClass("c1").addClass("c2")
                alert(jQuery(obj).parent().attr(
    "className"));//取得className,当成属性来取
            }
            
    function fChild(obj){
                
    //var childs = obj.childNodes;
                var childs = jQuery(obj).children();
                
    for(i=0;i<childs.length;i++){
                    alert(childs[i].id);
                }
                
    //jQuery的each遍历
            }
        
    </script>
    </head>
    <body>
        
    <div class="c1" onclick="fChild(this);">
            
    <div id="first" onclick="fNext(this);">first</div>
            
    <div id="second" onclick="fPrev(this);">second</div>
            
    <div id="third" onclick="fParent(this);">parent</div>
        
    </div>
    </body>
    </html>
  • 相关阅读:
    自定判断代码的执行环境
    将某个Qt4项目升级到Qt5遇到的问题[转]
    QT 智能提示设置
    c++基础 explicit
    Qt 5.2 Creator 和 vs2012 QT 插件的安装
    servlet乱码问题总结
    c++基础 使用智能指针
    Servlet学习之web服务器Tomcat 详解
    Windows数据类型
    友元类
  • 原文地址:https://www.cnblogs.com/greatverve/p/1578472.html
Copyright © 2011-2022 走看看