您的位置:首页 > 其它

游戏行业5年之变:手游重新定义行业趋势

2013-03-21 17:24 274 查看
1 下载 CKEditor http://ckeditor.com/demo
2


3 index.html
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="js/ckeditor.js"></script>
</head>
<body>

<textarea id="editor"></textarea>

<script>
CKEDITOR.replace( 'editor',{
width: 800,
height: 200,
resize_dir: 'both',
resize_minWidth: 800,
resize_minHeight: 200,
resize_maxWidth: 800,
resize_maxHeight: 200,
toolbar :[{name:"image",items:["Image"]},{name:"table",items:["Table"]}] // 设置toolbar
});
// 获取内容
// CKEDITOR.instances["editor"].getData();
// 获取选中内容
// CKEDITOR.instances["editor"].getSelectedHtml()
</script>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: