我发现 越是高级的课程下面显示的浏览人数越少 ,这说明了什么呢,而我一定要坚持下去,这又说明了什么呢 哈哈哈
2017-11-23
$("a").jqzoom({//绑定图片放大插件jqzoom
zoomWidth: 123, //小图片所选区域的宽
zoomHeight: 123, //小图片所选区域的高
zoomType: 'reverse' //设置放大镜的类型
});
zoomWidth: 123, //小图片所选区域的宽
zoomHeight: 123, //小图片所选区域的高
zoomType: 'reverse' //设置放大镜的类型
});
2017-11-22
$(function () {
$("a").lightBox({
overlayBgColor: "#666", //图片浏览时的背景色
overlayOpacity: 0.5, //背景色的透明度
containerResizeSpeed: 600 //图片切换时的速度
})
});
$("a").lightBox({
overlayBgColor: "#666", //图片浏览时的背景色
overlayOpacity: 0.5, //背景色的透明度
containerResizeSpeed: 600 //图片切换时的速度
})
});
2017-11-22
http://www.imooc.com/data/check.php
需要改https连接
https://www.imooc.com/data/check.php
需要改https连接
https://www.imooc.com/data/check.php
2017-11-22
$("#txtSearch").autocomplete(arrUserName,
2017-11-20
var st2={"status":0,"result":[{"userName":"白菜","streetName":"北京市朝阳区","sex":"男"},{"userName":"土豆","streetName":"北京市朝阳区","sex":"女"}]};
if(st2.status =="0"){$.each(st2.result,function(index,student){$("#list2").append("<li>姓名:"+student["userName"]+" 性别:"+student["sex"]+"</li>");});};
if(st2.status =="0"){$.each(st2.result,function(index,student){$("#list2").append("<li>姓名:"+student["userName"]+" 性别:"+student["sex"]+"</li>");});};
看清input的id是啥,然后再在js部分写,写完之后打开调试台,看cookie里的内容就会多一条name为username,value为你设置的值的cookie了,不用关闭再打开页面来看,很麻烦的啊
2017-11-18
$(function () {
var options = {
url: "http://www.imooc.com/data/form_f.php",
target: ".tip"
};
$('#frmV').ajaxForm(options);
});
var options = {
url: "http://www.imooc.com/data/form_f.php",
target: ".tip"
};
$('#frmV').ajaxForm(options);
});
2017-11-18
自己在自己的电脑上就不要写http://www.imooc.com/data/fruit_part.html了,这个是要跨域的,肯定是显示不出来的,要不charles代理一波
2017-11-18
The event .load() method conflicted with the ajax .load() method. The .error() method could not be used with window.onerror because of the way the DOM method is defined. If you need to attach events by these names, use the .on() method, e.g. change $("img").load(fn) to $("img").on("load", fn).
2017-11-16
$(function () {
var intR = 0, intG = 0, intB = 0, strColor;
$("input").each(function(index){//这句是必须的
$(this).spinner({}); //这句也是必须的,注意最后的尾括号
});
var intR = 0, intG = 0, intB = 0, strColor;
$("input").each(function(index){//这句是必须的
$(this).spinner({}); //这句也是必须的,注意最后的尾括号
});
2017-11-13