div 内可拖动且可调整大小的文本区域
我正在尝试创建一个带有可拖动且可调整大小的文本区域的 div。听起来很简单。然而,我的问题是文本区域和 div 的大小都是独立调整的。这导致用户界面相当混乱。我不明白为什么文本区域可以调整大小,因为我没有明确将其设置为可调整大小。
I'm Trying to create a div with a text area that is both draggable and resizable. Sounds simple enough. My problem however is that the text area and the div both are being made resizable independently of one another. This causes the ui to be rather confusing. I don't understand why the text area is resizable as I'm not explicitly setting it as resizable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过仅调整文本区域的大小并使用父 div 设置“alsoResize”,成功地按照我的预期实现了此功能,一切都变得愉快=)
Managed to get this working how I expected by making only the text area resizable and setting the "alsoResize" with the parent div and everything was made happy =)