How to add resizer to textarea in IE?

2019-04-29 18:21发布

How to add resizer to textarea in IE? Same as in Chrome and Firefox.

jQuery.resizable() won't work for me:(

Thank you!

2条回答
女痞
2楼-- · 2019-04-29 18:47

Internet Explorer (and Microsoft Edge, as of May 5, 2016) do not support native gripper/resizing on textarea elements. While these may eventually be supported in the future (in Microsoft Edge), the best option you have for now is to polyfill the functionality.

Many options exist online that do this, but if you're using jQuery and jQuery UI, you could use the Resizable widget:

$("textarea").resizable({
    handles: "se" // place handle only in 'south-east' of textarea
});

By default, this places the handler beneath the textarea. I didn't like this:

.ui-resizable-handle {
    transform: translateY(-100%);
}

You can see the end-result here: http://jsbin.com/rumokazepo/edit?html,css,js,output

查看更多
forever°为你锁心
3楼-- · 2019-04-29 18:51

Can't this be solved in CSS by defining the width and height like so:

.resize {
     width: 100px;
     height: 100px;
 }

 <textarea class="resize"></textarea>
查看更多
登录 后发表回答