国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁javascriptwidthjQuery Style - 如何設(shè)置元素最大長度

jQuery Style - 如何設(shè)置元素最大長度

我們想知道如何設(shè)置元素最大長度。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.4.4.min.js'></script>
<style type='text/css'>
.long {
  width: 100px;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $('input:text.long').attr('maxlength', parseInt($('input.long').css('width'), 10));
});
</script>
</head>
<body>
  <input type="text" class="long" />
</body>
</html>