1 | <html> |
---|
2 | <head> |
---|
3 | <script type="text/javascript" src="fckeditor/fckeditor.js"></script> |
---|
4 | </head> |
---|
5 | <body> |
---|
6 | <div style="height:300px" id="toolbar"></div> |
---|
7 | <textarea name="test"></textarea> |
---|
8 | <script type="text/javascript" language="javascript"> |
---|
9 | oFCKeditor=new FCKeditor('test'); |
---|
10 | oFCKeditor.BasePath='fckeditor/'; |
---|
11 | oFCKeditor.Config['EditorAreaCSS'] = '../../fckbug2.css' ; |
---|
12 | oFCKeditor.Config['BodyClass'] = 'cpage' ; |
---|
13 | oFCKeditor.Config['ToolbarLocation']='Out:toolbar'; |
---|
14 | oFCKeditor.ReplaceTextarea(); |
---|
15 | </script> |
---|
16 | <textarea name="test2"></textarea> |
---|
17 | <script type="text/javascript" language="javascript"> |
---|
18 | oFCKeditor=new FCKeditor('test2'); |
---|
19 | oFCKeditor.BasePath='fckeditor/'; |
---|
20 | oFCKeditor.Config['EditorAreaCSS'] = '../../fckbug2.css' ; |
---|
21 | oFCKeditor.Config['BodyClass'] = 'cpage2' ; |
---|
22 | oFCKeditor.Config['ToolbarLocation']='Out:toolbar'; |
---|
23 | oFCKeditor.ReplaceTextarea(); |
---|
24 | </script> |
---|
25 | </body> |
---|
26 | </html> |
---|