zoukankan      html  css  js  c++  java
  • 关于富文本编辑框与纯文本编辑框初始化加载过程的问题

    需求:

    在发资讯时要求支持用户选择文本编辑与富文本编辑,默认为纯文本编辑框。

    遇到的问题:

    放一个多文本编辑框,页面加载创建kindeditor富文本编辑框,富文本编辑框创建好后,会动动显示出来,同时会把纯文本编辑框隐藏起来。于是在jq中function方法都加载完成后,把富文本编辑框隐藏起来,纯文本编辑框隐藏起来,但是问题出现了,没有使用。

    解决方法是:

    把动作:富文本编辑框隐藏起来,纯文本编辑框隐藏起来,延迟执行,使用setTimeOut延迟处理这个动作。

    以下是使用过程的中用到的代码:

        <script type="text/javascript">
            $(function () {
                createEditor($(".editor"));
                $("input[name=edittype]").click(function(){
                    var val=$(this).val();
                    if(val=="1"){
                        $("#txtIntroduction").css("display","block");
                        $(".ke-container").css("display","none");
                        $("#txtIntroduction").val(editor.html());
                    }
                    else{
                        $("#txtIntroduction").css("display","none");
                        $(".ke-container").css("display","block");
                        editor.html($("#txtIntroduction").val());
                    }
                });
                setTimeout('$(".ke-container").css("display","none");$("#txtIntroduction").css("display","block");',1);
    }); </script>
  • 相关阅读:
    01Python基础_02变量
    01Python基础_04输入输出方式
    01Python基础_03运算符
    Spring Cloud 入门教程 搭建配置中心服务
    Spring Cloud入门教程Hystrix断路器实现容错和降级
    Spring Boot 2.0.1 入门教程
    Spring Cloud入门教程Ribbon实现客户端负载均衡
    Spring Cloud 入门教程 Eureka服务注册与发现
    代理模式
    最短路径算法——Dijkstra and Floyd算法
  • 原文地址:https://www.cnblogs.com/wdkshy/p/5309759.html
Copyright © 2011-2022 走看看