调整jHtml文本区域的大小

时间:2016-02-10 10:18:57

标签: javascript jquery wysiwyg jhtmlarea

我想像普通文本区一样调整jHtml TextArea的大小,所以有没有办法调整大小。

以下是创建jHtml Textarea的代码。

以下是HTML代码:

<table style="width: 100%; border-collapse: separate !important; border-spacing: 2px!important">
<tr>
    <td>
        <%=Html.LabelFor(m => m.Description)%>
    </td>
    <td>
        <%=Html.TextAreaFor(m => m.Description, new { @class="form-control",style="width: 610px; height: 150px" })%>
    </td>
</tr>
</table>

以下是javascript代码:

<script type="text/javascript">
   $(function () {
    $("#Description").htmlarea({
        // Override/Specify the Toolbar buttons to show
        toolbar: [
            ["bold", "italic", "underline", "|", "forecolor"],
             ["p", "h3", "h4", "h5", "h6"],
              ["link", "unlink", "|", "image"],
              ["orderedlist", "unorderedlist"],
              ["increasefontsize", "decreasefontsize"],
              ["indent", "outdent"],
              ["justifyleft", "justifycenter", "justifyright"],
              ["cut", "copy", "paste"]
        ]
    });
});
</script>

2 个答案:

答案 0 :(得分:2)

你可以通过添加&#34; resizable&#34;来实现这种行为。 jHtmlarea的属性。可以帮助你。

<script type="text/javascript">
   $(function () {
     $("#Description").htmlarea({           
          toolbar: [
             ["bold", "italic", "underline", "|", "forecolor"],
             ["p", "h3", "h4", "h5", "h6"],
             ["link", "unlink", "|", "image"],
             ["orderedlist", "unorderedlist"],
             ["increasefontsize", "decreasefontsize"],
             ["indent", "outdent"],
             ["justifyleft", "justifycenter", "justifyright"],
             ["cut", "copy", "paste"]
         ]
     }).parent().resizable({ alsoResize: $("#comm").find('iframe') });
  });
</script>

答案 1 :(得分:1)

我的猜测是,您可以通过使用css规则轻松实现所需的行为,如下面的代码段所示:

#Comments {
    position:absolute;
    width:60%;
    height:200px;
}
<textarea id="Comments">My text.</textarea>