标签: bing-maps jslint
错误:
在定义之前使用了Microsoft。
我正在使用bing MAP API在我的网页中实现bing地图。
var map; function getMap() { map = new Microsoft.Maps.Map(document.getElementById('myMap'), {credentials: 'bing map key'}); }
如何在没有jslint错误的情况下在js文件中使用函数?
答案 0 :(得分:3)
从JSLint的检查中排除Microsoft对象。
/*global Microsoft: false */
http://www.jslint.com/lint.html