- ベストアンサー
jquaryでsettimeは
例えばjvascriptのような時計を作る場合 function df(){ var d=new Date(); var sty=d.toLocalString(); document.ad.ad.value=sty; setTime(df(),1000;) } こんな感じ jquaryでセットタイムを勉強したいんですが、 見本にしたいのですが
- みんなの回答 (3)
- 専門家の回答
質問者が選んだベストアンサー
その他の回答 (2)
- 神崎 渉瑠(@taloo)
- ベストアンサー率44% (1016/2280)
回答No.2
- 神崎 渉瑠(@taloo)
- ベストアンサー率44% (1016/2280)
回答No.1
補足
$(function(){ $("#s7").click(function(){ $("#s9").animate({marginLeft:parseInt($("#s9").css("marginLeft"))-310+"px"},"slow","swing", function(){ $("ul.t1:first").appendTo("#s9"); $("#s9").css("marginLeft","0px") }); }); $("#s11").click(function(){ $("#s9").animate({marginLeft:parseInt($("#s9").css("marginLeft"))+230+"px"},"slow","swing", function(){ $("ul.t1:first").appendTo("#s9"); $("#s9").css("marginLeft","0px") }); }); }); 自分で作ったプログラムですけど ここに時間で動かすようにしたいというのが 今後の課題であります