You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
749 B
HTML
35 lines
749 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Auto Height Examples</title>
|
|
<style>
|
|
form {
|
|
margin: 0;
|
|
}
|
|
textarea {
|
|
display: block;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="../themes/default/default.css" />
|
|
<script charset="utf-8" src="../kindeditor-min.js"></script>
|
|
<script charset="utf-8" src="../lang/zh_CN.js"></script>
|
|
<script>
|
|
KindEditor.ready(function(K) {
|
|
K.create('textarea[name="content"]', {
|
|
autoHeightMode : true,
|
|
afterCreate : function() {
|
|
this.loadPlugin('autoheight');
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h3>自动调整高度</h3>
|
|
<form>
|
|
<textarea name="content" style="width:800px;height:200px;"></textarea>
|
|
</form>
|
|
</body>
|
|
</html>
|