2010/08/24

[jQuery]width()

名前通り、横幅を取得するメソッドです。

<html>
<head>
<title>Jquery widthテスト</title>
<script type="text/javascript"
src="./jquery-1.4.2.min.js"
></script>
</head>
<body>
<div id="test" class="foo bar">life goes on</div>
<input type="button"
value="Run"
id="hoge"
>
<script
type="text/javascript"
>

$("#hoge").bind(
'click'
, function(){
console.log($(".foo").width())
}
);

</script>
</body>
</html>

とても簡単です。


参考:jQuery日本語リファレンス width()

0 コメント:

コメントを投稿