首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    IE8下textarea的onpropertychange问题Stack overflow at line.「建议收藏」

    <!DOCTYPE html> <html lang=”en”> <head>     <meta charset=”UTF-8″>     <title>Document</title>     <script type=”text/javascript” src=”jquery-1.7.1.min.js”></script>     <style>         body { background:#fff; }         textarea {width:300px; min-height:60px; overflow:hidden; resize:none;}     </style>     <script>         $(function(){             $.fn.autoHeight = function(){                 function autoHeight(elem){                     elem.style.height = ‘auto’;                     elem.scrollTop = 0; //防抖动                     elem.style.height = elem.scrollHeight + ‘px’;                 }                 this.each(function(){                     autoHeight(this);                     $(this).on(‘keyup propertychange’, function(){                             autoHeight(this);                     });                 });             }             $(‘textarea[autoHeight]’).autoHeight();         });

    01
    领券