-1

这是我第一次使用 jquery 插件,我想在我的 aspx 页面中使用这个jquery 插件。我还没有看到任何关于如何在网站上使用插件的文档。

关于如何使用插件的 Amy 文档将非常有帮助

4

2 回答 2

0
  1. 从http://jquery.com/download/下载 jQuery

    并转到链接下载压缩的生产 jQuery 1.10.2 并将 js 保存为 jquery-1.10.2.min.js。

    将此 js 添加到您的项目中。

  2. 从 http://JqueryUi.com 下载 jQueryUi。解压这个并将 ui 和主题文件夹添加到您的项目中。

  3. 现在在您的页面中引用 jquery-1.10.2.min.js 通过添加它,您可以使用 jQuery 的基本功能。

  4. 要使用 jQuery 控件,您需要参考

    来自主题\base\minified 文件夹的 jquery-ui.min.css

    jquery-ui.min.js 来自 ui\minified 文件夹

注意:1. jquery-ui.min.js 必须放在 jquery-1.10.2.min.js 之后

  2. base is the default theme. you can download and use other themes as well
     you just need to change folder name in the reference to the css.

  3. You can also use uncompressed version to the jQuery code and debugging    
     during development 
于 2013-12-11T06:44:38.140 回答
0

<(removeMe)script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> <(removeMe)/script>'

你可以像这样在你的 aspx 页面中添加你所有类型的 jquery pulgin。

于 2013-12-11T09:28:46.233 回答