Home  >  Article  >  Web Front-end  >  FCKeditor does not show the above button to set text, it is just blank. _html/css_WEB-ITnose

FCKeditor does not show the above button to set text, it is just blank. _html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:01:56983browse


I don’t know why?
I am referencing the class library and it is my first time to use the online compiler.


Reply to the discussion (solution)

It seems that js is not introduced, or the id is not bound, or there is a problem with the js writing. Wait.
Take a look at ueditor when you have time.
http://ueditor.baidu.com/website/

It is also possible that the path is wrong when configuring

It is not configured properly, please refer to it directly As an example of FCKediter, you can build one and run it. Change it again.

It seems that the js is not imported, or the id is not bound, or there is a problem with the js writing. Wait.
Check out ueditor when you have time.
http://ueditor.baidu.com/website/



Is it from the great Baidu? We are also using ueditor


It seems that the js is not introduced, or the id is not bound, or there is a problem with the js writing. Wait.
Check out ueditor when you have time.
http://ueditor.baidu.com/website/



Is it from the great Baidu? We are also using ueditor
No, I am a CSDN professional.

The fckeditor editor does not display the toolbar in IE10

Today I found that the fckeditor editor does not display the toolbar when using IE10. What is the reason for this? However, there is no problem when using ff browser. , and then after searching online, it turned out to be a compatibility issue. Let me introduce the solution to you.

The first method is to set the compatibility mode of the browser

Open IE, click the "Tools" menu, select "Compatibility View Settings", and check "Show all websites in Compatibility View" ” option.

The second method, using the editor's web page:


Add below


The third method is to modify the JS file of the editor itself:

Modify /editor/js/ in the editor directory

B.open("GET",A,false);
Add at the end:
try{B .responseType='msxml-document';}catch(e){}
is as follows:
B.open("GET",A,false);try{B.responseType='msxml-document' ;}catch(e){}B.send(null);

(PS: The Empire CMS backend editor directory is /e/admin/ecmseditor/infoeditor/, and the frontend editor directory is /e/data /ecmseditor/infoeditor/ )

The fourth method is to change an editor. It would be better to use Baidu Editor.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn