console.log("1">"05"?"大于":"小于")
console.log("1">"5"?"大于":"小于")
上面是测试
因为是字符串,+"0"就可以避免出现1-5等0
console.log("1">"5"?"大于":"小于")
上面是测试
因为是字符串,+"0"就可以避免出现1-5等0
2016-05-03
$(function () {
$("#x").draggable({axis:"x"});
$("#y").draggable({axis:"y"});
});
$("#x").draggable({axis:"x"});
$("#y").draggable({axis:"y"});
});
2016-05-03
温心提示:由于在我们平台上输入$($)代码时,一些用户的浏览器会造成崩溃,所以您做这个练习时可使用粘贴的方式,不要直接输入。
是真的…………………………………………
是真的…………………………………………
<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("更多");
}
}