Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
错误:
在定义之前使用了 Microsoft'。
我正在使用 bing MAP API 在我的网页中实现 bing 地图。
var map; function getMap() { map = new Microsoft.Maps.Map(document.getElementById('myMap'), {credentials: 'bing map key'}); }
如何在没有 jslint 错误的情况下在 js 文件中使用函数?
从 JSLint 的检查中排除 Microsoft 对象。
/*global Microsoft: false */
http://www.jslint.com/lint.html