【发布时间】:2016-04-14 18:40:40
【问题描述】:
我的网站中有 textarea,我想让用户不允许调整此 textarea 的大小。 但我只使用这种语言: php - html - jquery - javascript
【问题讨论】:
标签: javascript php jquery html
我的网站中有 textarea,我想让用户不允许调整此 textarea 的大小。 但我只使用这种语言: php - html - jquery - javascript
【问题讨论】:
标签: javascript php jquery html
textarea {
resize:none;
}
<textarea rows="3"></textarea>
试试这个
【讨论】:
试试这个
<textarea rows="4" cols="50" style="resize:none;">
At w3schools.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea>
【讨论】:
试试这个
<html>
<head>
</head>
<body>
<textarea style="overflow:auto;resize:none" rows="10" cols="20"></textarea>
</body>
</html>
【讨论】: