JQUERY 1.9 BETA 1
JQUERY 1.9 BETA 1が12月17日にリリースされた。
http://blog.jquery.com/2012/12/17/jquery-1-9-beta-1-released/
http://jquery.com/upgrade-guide/1.9/
・変更点は全てjQuery 2.0に継承される
・多くの不要と判断された機能が削除された
・移行支援ツールjQuery Migrateを提供
・一時しのぎなので新しいプロジェクトには採用しないように
という2.0へ向けてのお試しのような内容のようだ。
例として記載があった新セレクタのサンプル。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src=" http://code.jquery.com/jquery-1.9.0b1.js "></script> <script src=" http://code.jquery.com/jquery-migrate-1.0.0b1.js "></script> <title></title> <style> div { background-color: red; width: 100%; height: 200px; } </style> <script> $( document ).ready(function(e) { var dm = $( 'div' ).css( [ 'width', 'height', 'backgroundColor' ] ); alert(dm.width); }); </script> </head> <body> <div class="wrap"> <div></div> </body> </html> |
cssプロパティを複数取得して連想配列で返してくれるようだ。
Author Profile
HOSHINO
ECのことを中心に書きたいと思います。 ネタが無いときはプログラムやデザインのことも書きます。
SHARE