JSON Parse Error on Internet Explorer

前端 未结 3 1331
你的背包
你的背包 2021-01-21 02:25

I\'m using a jscript to retrieve JSON data from Flickr. Works 100% in every browsers except IE.
I\'m using the jquery each function that calls this specific function for IE:

3条回答
  •  滥情空心
    2021-01-21 02:54

    You can choose a different method when using different browsers:

    choose eval in IE6, 7 choose native JSON in IE8 choose new Function in Firefox2, 3 choose eval in Safari4 eval has the same performance as new Function on the whole when you use the other browsers.

提交回复
热议问题