自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 jq ui 购物车

ProductsT-ShirtsLolcat ShirtCheezeburger ShirtBuckit ShirtBagsZebra StripedBlack LeatherAlligator LeatherGadgetsiPhoneiPodiPad jQuery UI Droppable - Shopping Cart De

2014-04-02 16:27:31 702

原创 jq父同辈元素parents等练习

父同辈元素parents等 $(function () { var a = $('em').parents().map(function() { return this.tagName; }).get().join(" "); $("em").append(

2014-03-27 10:56:42 1074

原创 jq简单插入

This is a headingThis is a paragraph.This is another paragraph.图书种类计算机类教材类杂志类文学类运动篮球足球羽毛球乒乓球添加运动添加图书种类把hedading移到最后 $(document).ready(function () { //添加运动

2014-03-24 14:04:29 621

原创 jq简单遍历对象

$(document).ready(function(){ $("#show").click(function(){ //遍历对象并改变对象内容字体颜色 $("li").each(function (indext, element) { //弹窗对象内容 alert(($(this).index() + 1) + ":"

2014-03-21 10:30:44 914

原创 jq获取对象简单.get()和.index()方法

This is a headingThis is a paragraph.This is another paragraph.图书种类计算机类教材类杂志类文学类运动篮球足球羽毛球乒乓球foobar设置还原 $(document).ready(function(){ // 设置羽毛球背景色为为橙色 $("#hide"

2014-03-21 09:22:54 1651

原创 2种方式获取对象内容

This is a headingThis is a paragraph.This is another paragraph.图书种类计算机类教材类杂志类文学类运动篮球足球羽毛球乒乓球foobar显示 $(document).ready(function(){// 点击显示 乒乓球 这个对象的内容,使用两个方式。 $("#h

2014-03-20 11:43:37 480

原创 jq简单移动动画效果

$(document).ready(function(){ $("button[type=button]").click(function (){ //单击按钮执行动画 var div=$("div"); div.animate({ left: '100px' ,fontSize: '3em' }, "slow"); div.animate({left:'

2014-03-20 09:42:23 2120

原创 jquery鼠标移入移出变色和单击隐藏出现事件

$(document).ready(function () { //鼠标移入变红色 $("li").mouseover(function (){ $(this).css("color", "red"); }); //鼠标移除变黑色 $("li").mouseout(function () {

2014-03-19 14:50:02 7927

原创 jq无序列表隐藏

$(document).ready(function(){$("ul[type='circle']").hide();$("ul[type='square'] li:eq(2)").hide();});This is a headingThis is a paragraph.This is another paragraph.图书种类

2014-03-18 09:16:07 682

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除