更改元素className使用$(className).each()使其无法使用

时间:2011-09-23 01:02:47

标签: javascript jquery html

我有一些JQuery代码可以将特定类的所有HTML元素转换为&来自textarea元素。

我的问题:我使用JQuery(.addClass())将元素类从“可更新”更改为“可更新的P”。但是当我去搜索所有具有“可更新”类的元素时(使用函数$(“。updatable”)。each())它找不到任何元素时应该找到3。

为实现这一目标我做错了什么?似乎在我更改元素类之后,我无法通过其类(使用JQuery)再次识别/查找该元素。

<html>
<head>

    <script type="text/javascript" src="jquery-1.6.4.js"></script>
    <script type="text/javascript">
    <!--
        var STATE = 1;

        function Toggle()
        {
            if (STATE==1) { convertToUpdatable(); STATE = 0; }
            else          { convertToStatic();    STATE = 1; }
        }

        function getTitleName( ele )
        {
            try        { return ele.className.split(" ")[1]; }
            catch (ex) { return "undefined"; }
        }

        function convertToUpdatable()
        {
            // Post: Convert all HTML elements (with the class 'updatable') to textarea HTML elements
            //       and store their HTML element type in the class attribute
            // EG: Before: <p class="updatable Paragraph1"/> Hello this is some text 1 </p>
            //     After : <p class='updatableElementTitle'>Paragraph1</p><textarea class="updatable Paragraph1 p"/> Hello this is some text 1 </textarea>

            $(".updatable").each(function()
                {
                    var title = getTitleName( this );
                    $(this).replaceWith("<p class='updatableElementTitle'>"+title+"</p><textarea>"+$(this).text() +"</textarea>");
                    $(this).addClass( this.nodeName );
                    alert( this.className );
                });
        }

        function convertToStatic()
        {
            // Post: Find all HTML elements (with the class 'updatable'), check to see if they are part of another class aswell
            //       (which will be their original HTML element type) & convert the element back to that original HTML element type

            // PROBLEM OCCURS HERE: after I have changed an elements className in the convertToUpdatable() I can no
            //                      longer find any HTML elements that have the className updatable using $(".updatable").each()
            $(".updatable").each(function()
                {
                    alert("Loop");
                    // Determine elements original HTML(node) type
                    try
                    {
                        var type = this.className.split(" ");
                        type     = (type[ type.length-1 ]).toLowerCase();
                        alert(type);
                    }
                    catch (ex) { alert("Updatable element had no type defined in class attribute"); return; }

                    // Convert element back to original HTML type
                    $(this).replaceWith( type +$(this).text() + type );

                    // Remove elements type from its className (remove " P" from "updatable Paragraph1 P")
                    $(this).removeClass( type ); 
                    alert( this.className );
                });

            // Delete all elements with the class 'updatableElementTitle'
            $(".updatableElementTitle").remove();
        }

    -->
    </script>
</head>
<body>

    <p class="updatable Paragraph1"/> Hello this is some text 1 </p>
    <b class="updatable Paragraph2"/> Hello this is some text 2 </b>
    <i class="updatable Paragraph3"/> Hello this is some text 3 </i>

    <input id="MyButton" type="button" value="Click me!" onclick="Toggle();" />

</body>
</html>

2 个答案:

答案 0 :(得分:1)

您正在使用replaceWithaccording to the spec)完全删除所有内容并将其替换为新内容。替换内容后,不再有updatable类的节点,因此您再也找不到它们了。

尝试将$(this).addClass( this.nodeName );替换为$(this).addClass('updatable');

答案 1 :(得分:1)

.replaceWith()会破坏现有元素。因此,在循环中完成this之后,您再也无法使用replaceWith(),因为该DOM元素不再是文档中的元素(它是旧的已被删除的元素,并且一旦你的功能退出就被垃圾收集了。)

由于您要为新标记指定HTML,我建议您将新类名放在传递给replaceWith()的HTML中。此外,您必须检查className的警报是检查旧的DOM元素,而不是新的DOM元素。请记住,this指向旧的DOM名称,而不是您替换它的名称。

你可以通过改变这个来做到这一点:

        $(".updatable").each(function()
            {
                var title = getTitleName( this );
                $(this).replaceWith("<p class='updatableElementTitle'>"+title+"</p><textarea>"+$(this).text() +"</textarea>");
                $(this).addClass( this.nodeName );
                alert( this.className );
            });
    }

到此:

        $(".updatable").each(function()
            {
                var title = getTitleName( this );
                $(this).replaceWith("<p class='updatableElementTitle " + this.nodeName + "'>" + title + "</p><textarea>"+$(this).text() +"</textarea>");
            });
    }

虽然,我不明白为什么要将nodeName添加为类?