javascript - jquery點擊按鈕沒有反應
为情所困
为情所困 2017-05-18 10:59:07
0
5
545

程式碼如下,點擊按鈕沒有任何效果
<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"></script>
<style>
    #cbox{
          background-color:green;
          color:red;
          border:5;
          width:300px;
          height:200px;
          positon:relative;
        }
</style>
<title>Document</title>

</head>
<body>

##

<h1>Jquery 学习</h1>
<button id='btn'>点击</button>

<p id='cbox'>变化的Box</p>
<script>
    jQuery(document).ready(function($){
        $('#btn').click(function(event){
            $('#cbox').animate({
                left:300,
                color:gray,
                width:'400px'
            });
        });
    });


</script>

</body>

</html>###
为情所困
为情所困

全部回覆(5)
Peter_Zhu

animate是不會改變顏色的,所以這個gray是沒有意義的,另外,就算你要寫color,gray也應該加上引號,不然就成了一個未定義的變數了。

小葫芦

顏色:'灰色'

给我你的怀抱

參數列表裡的 $ 去掉

伊谢尔伦

function中不該有$。
animate沒有color標籤,但有透明度變換的opacity的標籤。
還有標籤對應的值應有單引號''。

为情所困






熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板