You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
568tools/tools/NKeditor/test/quirkmode.html

26 lines
663 B

<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>KindEditor Test</title>
</head>
<body>
<h1 id="type">KindEditor Test</h1>
<form method="post" action="../php/demo.php">
<textarea name="editor1" cols="100" rows="20" style="width:800px;height:200px;"></textarea>
<br />
<script src="../kindeditor.js"></script>
<script src="../lang/zh-CN.js"></script>
<script src="../lang/en.js"></script>
<script>
KindEditor.ready(function(K) {
window.editor = K.create('textarea', {
allowFileManager : true,
langType : 'en'
});
});
</script>
</form>
</body>
</html>