发布网友 发布时间:2022-04-22 05:57
共7个回答
热心网友 时间:2022-04-20 01:57
需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<head>标签,输入jquery引用代码:
<script src="https://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
3、浏览器运行index.html页面,此时发现jquery被成功引用加入了网页。
热心网友 时间:2022-04-20 03:15
<head runat="server">
<title></title>
<link href="jquery/jquery-ui-1.8.21.custom.css" rel="stylesheet" type="text/css" />
<script src="jquery/jquery-1.7.min.js" type="text/javascript"></script>
<script src="jquery/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>
<script src="jquery/json.js" type="text/javascript"></script>
<script src="jquery/MyAjax.js" type="text/javascript"></script>
<script src="js/myjs.js" type="text/javascript"></script>
<style type="text/css">
</style>
</head>
<body>
..........
</body>
src="Jquery要引用的文件的路径"
这个可以自己手动写;如果你使用的是visual studio可以将要引用的文件放在自己新建的文件夹内;要引用的话直接拖进去就行;引用时要注意先后顺序;
/////////////////////////////////////////////////@希望可以帮到你@////////////////////////////////////////
热心网友 时间:2022-04-20 04:50
1。<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>(直接用网上的。。不建议你这样引入)
2。<script src="js/jquery-1.8.0.js">(下载文件放到本地目录下,引用文件即可。。基本都是这样做的)
放到</header>上方 (其实放到哪里都可以)
热心网友 时间:2022-04-20 06:41
jquery是结构化的开源js文件,按照js文件引用方式使用。
1、可以到jQuery官网http://jquery.com/download 下载js文件到项目中(附件中上传了一个1.8.3版本的jquery文件),然后使用相对路径引用:<script src='your path'></script>;
2、直接引用网上现有的js文件
官方的:<script src="http://code.jquery.com/jqueryversion.js"></script> 注:"jqueryversion"替换为版本号;
google的:http://ajax.googleapis.com/ajax/libs/jquery/jqueryversion/jquery.js 注:"jqueryversion"替换为版本号;
热心网友 时间:2022-04-20 08:49
用的时候和你的js文件放到一起就可以
然后像其他文件一样加载一下就行
<script language="javascript" src="jquery.js"></script>
热心网友 时间:2022-04-20 11:14
首先在head里面调用jQuery库文件,如<script src="jquery/jquery.js" type="text/javascript"></script>,最好调用的第一个js文件就是jQuery,然后在body里面输入
<script>
$(function(){
//开始写jQuery代码
})
</script>
热心网友 时间:2022-04-20 13:55
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>