6
results
for jQuery
- jQuery1.5 jQuery: » jQuery 1.5 Beta 1 Released 今回のリリースの目玉は、Ajax周りの書き換えとその新記法、そしてサブクラスという新機能です。 バグフィックスと速度向上はもちろん行われています。 特に、バクフィックスでは未だにIE対策が行われ、またv8での速度が大幅に向上したそうです!Chrome厨喚起! その他として、細かいことだけど、node.jsとの連携の強化?的なことや、Google Closure CompilerからUglifyJSなるものに圧縮ツールを変更したようですよ。 Ajaxモジュールの書き換え 「これは今回の最も重要な変更点であり、パフォーマンスや機能の改善、安定性の向上をもたらす」そうです。(訳は適当) Julian Aubourgさんによるこの書き換えによって、以下の書き方ができるようになりました。 // Assign handlers immediately after making the request, // and remember the jxhr object for this request var jxhr = $.ajax({ url: "example.php" }) .success(function() { alert("success"); }) .error(function() { alert("error"); }) .complete(function() { alert("complete"); }); // perform other work here ... // Set another completion function for the request above jxhr.jQuery Created
Tue, 01 Feb 2011 11:11:22 +0000 - jQuery1.5 jQuery: » jQuery 1.5 Beta 1 Released 今回のリリースの目玉は、Ajax周りの書き換えとその新記法、そしてサブクラスという新機能です。 バグフィックスと速度向上はもちろん行われています。 特に、バクフィックスでは未だにIE対策が行われ、またv8での速度が大幅に向上したそうです!Chrome厨喚起! その他として、細かいことだけど、node.jsとの連携の強化?的なことや、Google Closure CompilerからUglifyJSなるものに圧縮ツールを変更したようですよ。 Ajaxモジュールの書き換え 「これは今回の最も重要な変更点であり、パフォーマンスや機能の改善、安定性の向上をもたらす」そうです。(訳は適当) Julian Aubourgさんによるこの書き換えによって、以下の書き方ができるようになりました。 // Assign handlers immediately after making the request, // and remember the jxhr object for this request var jxhr = $.ajax({ url: "example.php" }) .success(function() { alert("success"); }) .error(function() { alert("error"); }) .complete(function() { alert("complete"); }); // perform other work here ... // Set another completion function for the request above jxhr.jQuery Created
Tue, 01 Feb 2011 11:11:22 +0000 試験期間中の夜はテンション高いぜイエー
Google Reader見てたらjQuery1.4.3が来てるじゃないすか!!
jQuery: » jQuery 1.4.3 Released
jQuery1.4.2のときは大した変更がなかったんですが、1.4.3は
予想通りかなりの変更が加えられてます!内容は本家のブログが詳細に語っているので、そちらを見ることをお勧めしますが、ぱっと見なんかすごそう!ってのをちょいちょい感想を加えつつ大雑把にまとめ。
発表から数時間後に急いで書いたので、間違ってたり理解できてないところが多々あると思います;jQuery CreatedSat, 16 Oct 2010 15:07:34 +0000