我必须在下面的方法中使用bind()。我只想支持IE10及以上版本。任何人都可以验证IE10支持何时或是否支持bind()?
// Verify console exists
...
if (window.console) {
logger = window.console.log.bind(window.console);
// bind needed for Safari but not FF, possible IE issue?
} else {
return false; // window.console not available, silent fail
}
...
答案 0 :(得分:9)
bind
以来,IE中一直支持 9
。请查看此兼容性表格,该表格与bind
的{MDN>文档相关联:http://kangax.github.com/es5-compat-table/