jquery的问题

刚学到jquery想知道这段代码是路径错误还是代码错误了

<html>

<head>

<title>jQueryTest</title>

<style>

.a{

boder:3px solid red;

width:300px;

height:300px;

}

</style>

<script src="../jquery-2/jquery-2.1.1.js" type="text/javascipt">

$(document).ready(function(){

$("p").addclass("a");

})

</script>

</head>

<body>

<p>测试</p>

</body>

</html>


漫之旅
浏览 2060回答 8
8回答

慕虎1618318

第13行   addclass()应为addClass();  第6行 为 border  不是 boder第10行  type="text/javascript"  在第10行应该把script标签合并,并且不需要声明文件类型,下面如果需要 在写 js的话,在重新写一个 script标签

游戏10代

<script src="../jquery-2/jquery-2.1.1.js" type="text/javascipt">后少了</script>$(document).ready(function(){    前面少了<script>,两个脚本必须分开,不可混为一团,因为作用都不同border边框 单词写错了开头少了<!DOCTYPE html>addclass错了,C要大写,addClassp标签里没有相应的 样式里的类.a,加一个class="a"函数后头没有分号结束‘;’注意:<script src="../jquery-2/jquery-2.1.1.js" type="text/javascipt"></script>不能简化写成<script src="../jquery-2/jquery-2.1.1.js" type="text/javascipt" / >  其他标签可能可以,而他就是不行。 正确代码:<!DOCTYPE html><html><head><meta charset="utf-8"/><style>.a{border:3px solid red;width:300px;height:300px;}</style><script src="jquery-1.8.3.min.js" type="text/javascript"></script><script type="text/javascript">$(document).ready(function(){$("p").addClass("a");});</script>    </head><body><p class="a">主人,我会变出红色框框!</p></body></html>10. 效果图片:

慕哥5461239

$("p").addclass("a"); 此处有错误 $("p") 不是单个的元素。

XFE_星城前端_Peter

需要将js代码写在不带src属性的Script标签里面代码才会执行
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery