$(function () {
$("#x").draggable({axis:"x"});
$("#y").draggable({axis:"y"});
});
$("#x").draggable({axis:"x"});
$("#y").draggable({axis:"y"});
});
2016-05-03
温心提示:由于在我们平台上输入$($)代码时,一些用户的浏览器会造成崩溃,所以您做这个练习时可使用粘贴的方式,不要直接输入。
是真的…………………………………………
是真的…………………………………………
最新回答 / C是什么
规定网页的加载和JavaScript的执行顺序,不然网页还没加载到你写的a标签呢,JavaScript就开始读取a了,就会出现a标签undfined的状况,脚本就会执行错误。
2016-05-02
<a href="javascript:show();">更多</a>
<script>
function show(){
if($("a").html()=="更多"){
$("li:hidden").show();
$("a").html("简化");}
else{
$("li:eq(1),li:eq(3)").hide();
$("a").html("更多");
}
}
<script>
function show(){
if($("a").html()=="更多"){
$("li:hidden").show();
$("a").html("简化");}
else{
$("li:eq(1),li:eq(3)").hide();
$("a").html("更多");
}
}
最赞回答 / 一二三123
因为没有打method:“post”之前,方法里面默认的是get方法,get方法读取了慕课网里面文件存储的信息也就是只有偶数。当你用post方法之后,上传的信息就改成了你自己打的信息,比如5,他就给你返回奇数,比如6,他就给你返回偶数。
2016-05-02
$("form :text").addClass("bg_blue");
$(" :text").addClass("bg_blue");
$("#frmTest :text").addClass("bg_blue");
三种方式都可以实现。
$(" :text").addClass("bg_blue");
$("#frmTest :text").addClass("bg_blue");
三种方式都可以实现。
2016-05-02
楼下的楼下那个each遍历的function可以没有data参数的
$(".drag").each(function(index){
$(this).draggable({containment:"parent" ,axis: index == 0? "x":"y"});
$(".drag").each(function(index){
$(this).draggable({containment:"parent" ,axis: index == 0? "x":"y"});
2016-05-02
@为了更好的自己 检测cookie对象是否存再,如果存在,则将输入框的内容显示为该cookie对象值(就是看看以前保存过没有)
2016-05-01