5

使用jquery ui draggable插件,我以这种方式使 html 文本框可拖动:

<script type="text/javascript" language="javascript">
    $(document).ready(function() {
        $("#Text1").draggable({
            containment: "parent",
            cancel: null
        });
    });
</script>

<form id="form1" runat="server">
<div>

    <div id="dialog" title="Dialog Box" style="border: solid 1px black;">
        <input id="Text1" type="text" style="width: 200px; height: 20px;" value="Text1" />
    </div>

</div>
</form>

但是,如何使用 jQuery 来调整大小呢?

先感谢您。

戈兰

4

2 回答 2

5

这是制作 HTML 文本框并使用的演示resizabledraggablejquery-ui

HTML:

<div id="container" class="ui-widget-content">
<h3 class="ui-widget-header">Containment</h3>
<span id="draggable">*  
<input type="text "id="resizable" class="ui-state-active" value="This is input box">
</span>
</div>

JS:

$(function() {
     $( "#resizable" ).resizable({
containment: "#container"
});
     $( "#draggable" ).draggable({containment: "#container"});
});
于 2014-07-11T07:32:26.343 回答
2

通过使用jQuery UI.
HTML 文件
<input type="text" id="resizable" />
JavaScript 文件在脚本标签中引用所有需要的 jQuery 文件,即

<script src="*all needed .js files*"></script>

<script>
    $(function() {      
    $( "#resizable" ).resizable();
});
</script>

顺便说一句,为什么你需要使文本框可调整大小

于 2012-05-24T07:36:25.930 回答