标签: javascript jquery
这是我的测试文件中的一部分,Chrome可以运行console.log值,但不能在IE8中运行。如何修复使IE8可以运行相同环境的代码?
<script> var f = function () { console.log(this.name); }; var another = f.bind({ name: 'welcome' }); another(); // welcome </script>