LoginSignup
2
2

More than 5 years have passed since last update.

IE6対応のjsライブラリ

Last updated at Posted at 2015-08-20

jQuery1.12.4

knockout.js

Microsoft ASP.NET開発チームの人が開発
依存するライブラリは無し (jQuery不要)
IE6以上対応(2017/3/7 version 3.4.2 にて確認。)
サーバー通信機能(Ajax)がない

<span data-bind="text: message"></span> <br>
<span data-bind="html: msg2"></span>

<script src="http://knockoutjs.com/downloads/knockout-3.4.2.js"></script>
<script>
ko.applyBindings({
    message: '<b>hello</b> wrold!',
    msg2: '<s>hello</s>'
});
</script>

スクリーンショット_2017-03-07_08-30-41.png

JSON3

 最近のブラウザでは、オブジェクトをJSON文字列に変換するJSON.stringify()や、逆にJSON文字列をオブジェクトに変換するJSON.parse()という関数が用意されています。しかしInternet Explorer(以下、IE)6や7などの比較的古いブラウザではこれらの関数が用意されていません。

CSS3, HTML5

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2