Extension Manager" in order and search for NUGET; then install NuGet Package Manager; finally install jquery through the "nstall-package jquery" command."/> Extension Manager" in order and search for NUGET; then install NuGet Package Manager; finally install jquery through the "nstall-package jquery" command.">
Home > Article > Web Front-end > How to install jquery in vs
How to install jquery in vs: first open VS2010; then open "Tools->Extension Manager" in order, search for NUGET; then install NuGet Package Manager; finally install jquery through the "nstall-package jquery" command That’s it.
The operating environment of this tutorial: windows7 system, Microsoft VisualStudio2010&&jquery1.10.0 version, Dell G3 computer.
Recommended: jQuery video tutorial
Visual Studio (referred to as VS) install jquery
Open VS2010, tools--> ;Extension Manager, search for NUGET
to install NuGet Package Manager. After installation, VS2010 will be restarted
After restarting, Tools-->NUGET Package Manager-->Program Package manager console
The command line tool will open at this time
PM>
Enter the command at the above command prompt:
PM> install-package jquery
After pressing Enter, VS will automatically download the latest Put the JQUERY program into your WEB project
Generally, a scripts folder will be generated in your WEB directory and the following 4 files will be generated:
jquery-1.9.0-vsdoc.js jquery-1.9.0.js jquery-1.9.0.min.js jquery-1.9.0.min.map
At this time, your The WEB project of VS2010 supports jQuery and can intelligently sense jQuery syntax
The above is the detailed content of How to install jquery in vs. For more information, please follow other related articles on the PHP Chinese website!