我有一个asp文本框和标签,它呈现为文本区域:
<div class="control">
<asp:TextBox runat="server" Rows="2" ID="TextBox1" Width="80%" EnableViewState="false" ViewStateMode="Disabled" CssClass="textboxBootstrapCss" TextMode="MultiLine" />
<asp:Label runat="server" ID="Label1" Visible="false" ViewStateMode="Disabled" EnableViewState="false" AssociatedControlID="TextBox1" />
</div>
但我想添加一些jquery以允许它添加resize:both;
,这将允许文本区域的大小从文本区域右下角的用户更改,因为它在IE中不起作用我使用jquery来代替css
这是我的jquery:
$(function () {
$("textArea").resizable();
});
答案 0 :(得分:0)
试试这个并告诉我它是否有效!
$(function() {
$( "#resizable" ).resizable({
containment: "#control"
});
$( "#TextBox1" ).draggable({containment: "#control"});
});