index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.2.47/es2015/jodit.min.css" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.2.47/es2015/jodit.min.js"></script> </head> <body> <textarea id="editor"></textarea> <script> const editor = Jodit.make('#editor'); </script> </body> </html> |