TinyMCE 方向性 ltr 所有子元素

发布于 2025-01-10 15:53:43 字数 110 浏览 0 评论 0原文

据我所知,TinyMCE 中的方向性插件,使用按钮 ltr,仅将 dir="ltr" 应用于所选的顶部元素。 我想改变这种行为,所以它将把 ltr 方向性应用于所选元素的所有子树元素,其中方向不是 ltr。

As far as I know the directionality plugin in TinyMCE, with the button ltr, only apply dir="ltr" to the selected top element.
I want to change this behaviour, so it will apply the ltr directionality to all subtree elements of the selected element, in which the direction is not ltr.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁以何悠 2025-01-17 15:53:43

我在方向性插件之外解决了这个问题,使用

editor.on('ExecCommand', function(e) {
                        switch(e.command){
                            case "mceDirectionLTR":
                                var selectedNode = tinymce.activeEditor.selection.getNode();
                                changeDirection(selectedNode,'ltr');
                                break;
                            case "mceDirectionRTL":
                                var selectedNode = tinymce.activeEditor.selection.getNode();
                                changeDirection(selectedNode,'rtl');
                                break;
                        }
                    });

function changeDirection(rootNode, desiredDirectionLiteral){
        var node; var walk = document.createTreeWalker(rootNode, NodeFilter.SHOW_ELEMENT, null, false);
        while (node = walk.nextNode()) {
            if (node.dir !== null && node.dir !== '' && node.dir !== desiredDirectionLiteral) {
                node.dir = desiredDirectionLiteral;
            }
        } 
    }

I solved it outside of the directionality plugin using:

editor.on('ExecCommand', function(e) {
                        switch(e.command){
                            case "mceDirectionLTR":
                                var selectedNode = tinymce.activeEditor.selection.getNode();
                                changeDirection(selectedNode,'ltr');
                                break;
                            case "mceDirectionRTL":
                                var selectedNode = tinymce.activeEditor.selection.getNode();
                                changeDirection(selectedNode,'rtl');
                                break;
                        }
                    });

And

function changeDirection(rootNode, desiredDirectionLiteral){
        var node; var walk = document.createTreeWalker(rootNode, NodeFilter.SHOW_ELEMENT, null, false);
        while (node = walk.nextNode()) {
            if (node.dir !== null && node.dir !== '' && node.dir !== desiredDirectionLiteral) {
                node.dir = desiredDirectionLiteral;
            }
        } 
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文