如何使用 jQuery 通过拖动文本输入框的右下角来调整其大小(如文本区域)?
我想要(最好在 jQuery 中)常规文本输入框,可以通过其右下角单击和拖动(例如,像 Chrome 中的文本区域)并由用户调整大小?
找不到任何已经实现此功能的 jQuery 插件。任何人都可以给我提示是否存在这样的事情或者如何轻松实现它?
先感谢您。
编辑:我想像 Chrome 中的 textarea 一样调整大小......
I would like to have (preferrably in jQuery) regular text input box which can be clicked and dragged by its right-bottom corner (e.g. like textareas have in Chrome) and resized by user ?
Can't find any jQuery plugin already implementing this. Can anybody give me hint if something like this exists or how could it be easily implemented ?
Thank you in advance.
EDIT: I want to be resizable similarly like textarea is in Chrome...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不需要 jQuery 来处理这个问题。你需要的是CSS。
这将使您的文本输入在右侧具有调整大小选项
You don't need jQuery to handle this. What you need is css.
This will allow your text input to have the resize option on the right
《纪元 2016》则有点复杂。您需要将
包装在您调整大小的“内联块”中:
Anno 2016 it is a bit more complicated. You need to wrap the
<input>
in an "inline-block" that you made resizable:您是否看过 jQuery UI 可调整大小小部件?
这是可调整大小示例的源代码。
Have you looked at the jQuery UI resizable widget?
Here is the source code for just the resizable example.
我对 kay 的答案做了一个变体,使用伪元素
::after
而不是第二个跨度。简而言之:仅使用 html:
查看完整代码并在此处查看其实际操作:
https://jsfiddle.net/ElMoonLite/qh703tbe/
还添加了
input { padding-右:0.5em;因此,如果它的值充满了文本,您仍然可以调整它的大小。
2019 年 Chrome 中似乎仍然有效。
在 Edge 中,调整大小似乎不起作用(但在其他方面看起来不错(优雅降级))。尚未测试其他浏览器。
I made a variation on kay's answer, using the pseudo element
::after
instead of a second span. in short:with html just:
See full code and see it in action here:
https://jsfiddle.net/ElMoonLite/qh703tbe/
Also added
input { padding-right: 0.5em; }
so you can still resize it if it's value is full of text.Still seems to work in 2019 in Chrome.
In Edge resize does not seem to work (but otherwise looks ok (graceful degradation)). Haven't tested other browsers yet.