admin管理员组

文章数量:1296456

this /

(Kendo grid export to csv)

works fine in firefox, chrome and IE11

in ie9 im getting

            blob = new Blob([csv], { type: 'text/csv;charset=utf-8' }); //Blob.js
            saveAs(blob, fileName); //FileSaver.js

'Blob' is undefined show, line 141 character 17

is there a way around this for ie9? (im not sure if this works on ie10)

this http://jsfiddle/bCRm3/17/

(Kendo grid export to csv)

works fine in firefox, chrome and IE11

in ie9 im getting

            blob = new Blob([csv], { type: 'text/csv;charset=utf-8' }); //Blob.js
            saveAs(blob, fileName); //FileSaver.js

'Blob' is undefined show, line 141 character 17

is there a way around this for ie9? (im not sure if this works on ie10)

Share Improve this question asked May 23, 2014 at 13:09 user3641778user3641778 611 gold badge1 silver badge9 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

Check Blob object browser patibility:

Browser patibility

Chrome  Firefox (Gecko) Internet Explorer   Opera   Safari (WebKit)
20      13.0 (13.0)     10                  12.10   6 (536.10)

Please note that this is not supported by all browsers including IE9 or ealier:

https://developer.mozilla/en-US/docs/Web/API/Blob

本文标签: javascriptie9 Error 39Blob39 is undefinedStack Overflow