我正在学习AJAX。我有visual studio 2010,并且intellisense功能没有显示XMLHttpRequest类的open()和send()方法。
我已将jquery库文件添加到我的页面,jquery工作正常,但AJAX无效。
请指导我。
这是一段代码片段
var xmlhttp;
function loadevent()
{
xmlhttp = new XMLHttpRequest();
xmlhttp.
}
当我按下“。”它只显示7个标准属性,如propertyof,constructor,tostring等。
答案 0 :(得分:0)
您需要为intellisense添加vsdoc
个文件。看看以下链接...
NuGet 1.6.0- 他们在此提及vsdoc files for Visual Studio IntelliSense are now included in the core jquery NuGet package. As a result, this pacakge is obsolete and will not be updated past version 1.6
希望有所帮助......