課程
/前端開發(fā)
/jQuery
/jQuery基礎(chǔ)課程
這里是一定要放在body里么
2016-05-12
源自:jQuery基礎(chǔ)課程 7-13
正在回答
?<script?src="http://libs.baidu.com/jquery/1.9.0/jquery.js"?type="text/javascript"></script>?????????????<script?type="text/javascript"> ???????????$(function(){ ????????????$("#btn1").bind("click",function(){ ????????????????$("div").animate( ???????????????????{left:"-=50px"},3000) ???????????????????? ????????????????}); ???????????????? ???????????? ????????????$("#btn2").bind("click",function(){ ????????????????$("div").animate( ???????????????????{left:"+=50px"},3000) ???????????????????? ????????????????})????????? ????????????} ????????</script>
你要是放在head里面的話,就要加$(function(){??? //代碼? }
1VAN1
punmpking 提問者 回復(fù) 1VAN1
1VAN1 回復(fù) punmpking 提問者
punmpking 提問者
<!DOCTYPE html>
<html>
? ? <head>
? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
? ? ? ? <title>jQuery動畫特效</title>
? ? ? ? <style type="text/css">
? ? ? ? div{
? ? ? ? position:absolute;
? ? ? ? top:50px;
? ? ? ? left:200px;
? ? ? ? height:50px;
? ? ? ? width:50px;
? ? ? ? border:1px solid red;
? ? ? ? }
? ? ? ? </style>
? ? ? ? <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
? ? ? ? ? ? ?<script type="text/javascript">
? ? ? ? ? ? $("#btn1").bind("click",function(){
? ? ? ? ? ? ? ? $("div").animate(
? ? ? ? ? ? ? ? ? ?{left:"-=50px"},3000)
? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ??
? ? ? ? ? ??
? ? ? ? ? ? $("#btn2").bind("click",function(){
? ? ? ? ? ? ? ? ? ?{left:"+=50px"},3000)
? ? ? ? ? ? ? ? }) ? ? ? ??
? ? ? ? </script> ??
? ? </head>
? ??
? ? <body>
? ? <div>hello world!</div><br/>
? ? ?<input type="button" id="btn1" value="左移"/> ?
? ? ?<input type="button" id="btn2" value="右移"/>
? ? </body>
</html>
代碼貼出來看下
舉報
加入課程學(xué)習(xí),有效提高前端開發(fā)速度
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2016-05-12
你要是放在head里面的話,就要加$(function(){??? //代碼? }
2016-05-12
<!DOCTYPE html>
<html>
? ? <head>
? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
? ? ? ? <title>jQuery動畫特效</title>
? ? ? ? <style type="text/css">
? ? ? ? div{
? ? ? ? position:absolute;
? ? ? ? top:50px;
? ? ? ? left:200px;
? ? ? ? height:50px;
? ? ? ? width:50px;
? ? ? ? border:1px solid red;
? ? ? ? }
? ? ? ? </style>
? ? ? ? <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
? ? ? ? ? ? ?<script type="text/javascript">
? ? ? ? ? ? $("#btn1").bind("click",function(){
? ? ? ? ? ? ? ? $("div").animate(
? ? ? ? ? ? ? ? ? ?{left:"-=50px"},3000)
? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ??
? ? ? ? ? ??
? ? ? ? ? ? $("#btn2").bind("click",function(){
? ? ? ? ? ? ? ? $("div").animate(
? ? ? ? ? ? ? ? ? ?{left:"+=50px"},3000)
? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? }) ? ? ? ??
? ? ? ? ? ??
? ? ? ? </script> ??
? ? </head>
? ??
? ? <body>
? ? <div>hello world!</div><br/>
? ? ?<input type="button" id="btn1" value="左移"/> ?
? ? ?<input type="button" id="btn2" value="右移"/>
? ? </body>
</html>
2016-05-12
代碼貼出來看下