为了账号安全,请及时绑定邮箱和手机立即绑定

为什么代码写完无法在慕课上实现

为什么代码写完无法看到效果,换到Dreamweaver 里面就可以运行。

正在回答

4 回答

在慕课网上,你CSS 样式表没有办法引入吧,显示不出来,你应该把CSS样式表也放到上面,就和案例一样,你在DW中是内嵌样式表,当然可以了

0 回复 有任何疑惑可以回复我~
这是慕课网的:
<!DOCTYPE html>
<html>
    <head>
        <title>prev + next选择器</title>
        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
        <link href="style.css" rel="stylesheet" type="text/css" />
    </head>
    
    <body>
        <div>
            码农家族
            <label></label>
            <p></p>
            <label></label>
            <label></label>
        </div>
        <label></label>
        
        <script type="text/javascript">
            $("p+label").css("background-color","red");
        </script>
    </body>
</html>
CSS样式:
div, p, label
        {
            float: left;
            border: solid 1px #ccc;
            margin: 5px;
            padding: 5px;
        }
        p,label
        {
            width:230px;
            height:30px;
        }
        p
        {
            border: solid 1px red;
        }
这个在慕课网里面没有反应。当然,样式是外部链接式的,这里我就粘贴在后面了。
然后我把代码写到Dreamweaver里面就行了。
Dreamweaver的代码。是不是jquer库的原因?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="jquery-1.9.0.js"></script>
<style type="text/css">
div, p, label
        {
            float: left;
            border: solid 1px #ccc;
            margin: 5px;
            padding: 5px;
        }
        p,label
        {
            width:230px;
            height:30px;
        }
        p
        {
            border: solid 1px red;
        }
</style>
</head>

 <body>
        <div>
            码农家族
            <label></label>
            <p></p>
            <label id="a"></label>
            <label></label>
        </div
        <label></label>
        
        <script type="text/javascript">
            $("p+label").css("background-color","red");
        </script>
    </body>
</html>


0 回复 有任何疑惑可以回复我~

这是慕课网的:

<!DOCTYPE html>

<html>

    <head>

        <title>prev + next选择器</title>

        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

        <link href="style.css" rel="stylesheet" type="text/css" />

    </head>

    

    <body>

        <div>

            码农家族

            <label></label>

            <p></p>

            <label></label>

            <label></label>

        </div>

        <label></label>

        

        <script type="text/javascript">

            $("p+label").css("background-color","red");

        </script>

    </body>

</html>

CSS样式:

div, p, label

        {

            float: left;

            border: solid 1px #ccc;

            margin: 5px;

            padding: 5px;

        }

        p,label

        {

            width:230px;

            height:30px;

        }

        p

        {

            border: solid 1px red;

        }

这个在慕课网里面没有反应。当然,样式是外部链接式的,这里我就粘贴在后面了。

然后我把代码写到Dreamweaver里面就行了。

Dreamweaver的代码。是不是jquer库的原因?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>无标题文档</title>

<script src="jquery-1.9.0.js"></script>

<style type="text/css">

div, p, label

        {

            float: left;

            border: solid 1px #ccc;

            margin: 5px;

            padding: 5px;

        }

        p,label

        {

            width:230px;

            height:30px;

        }

        p

        {

            border: solid 1px red;

        }

</style>

</head>


 <body>

        <div>

            码农家族

            <label></label>

            <p></p>

            <label id="a"></label>

            <label></label>

        </div

        <label></label>

        

        <script type="text/javascript">

            $("p+label").css("background-color","red");

        </script>

    </body>

</html>


0 回复 有任何疑惑可以回复我~

把你写的代码发上来看看

0 回复 有任何疑惑可以回复我~
#1

666图 提问者

我放到下一楼了
2015-12-29 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

为什么代码写完无法在慕课上实现

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信