Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果浏览器不使 textareas 可调整大小,我将附加自定义调整大小句柄:我如何检查是否是这种情况?(不诉诸特定浏览器的测试)。
玩了一会儿之后,这似乎可行:
if($(textarea).css('resize') != 'both'){ // add custom resize handle }
您可能需要考虑在所有浏览器中添加自定义调整大小句柄。这样做的好处是您的网站在所有浏览器中看起来都相同(或几乎相同)。该站点使用resize:none;css 执行此操作。
resize:none;