2024-08-15

以下是一个使用jQuery实现的简易购物车示例。这个例子包括了添加商品到购物车、更新总计价格以及清空购物车的功能。

HTML 部分:




<table id="cartTable">
  <thead>
    <tr>
      <th>商品名称</th>
      <th>单价</th>
      <th>数量</th>
      <th>小计</th>
      <th>操作</th>
    </tr>
  </thead>
  <tbody>
  </tbody>
</table>
 
<button id="clearCart">清空购物车</button>
<div id="totalPrice">总计: ¥0.00</div>

CSS 部分:




table {
  width: 100%;
  border-collapse: collapse;
}
 
th, td {
  border: 1px solid #ddd;
  padding: 8px;
}
 
#clearCart {
  margin-top: 10px;
}
 
#totalPrice {
  margin-top: 10px;
  font-weight: bold;
}

jQuery 部分:




$(document).ready(function() {
  var cart = [];
 
  // 添加商品到购物车
  function addToCart(product) {
    cart.push(product);
    var row = '<tr><td>' + product.name + '</td><td>¥' + product.price + '</td><td>' + product.quantity + '</td><td>¥' + (product.price * product.quantity).toFixed(2) + '</td><td><button class="removeProduct" data-index="' + (cart.length - 1) + '">移除</button></td></tr>';
    $('#cartTable tbody').append(row);
    updateTotalPrice();
  }
 
  // 更新总计价格
  function updateTotalPrice() {
    var total = 0;
    cart.forEach(function(product) {
      total += product.price * product.quantity;
    });
    $('#totalPrice').text('总计: ¥' + total.toFixed(2));
  }
 
  // 移除商品
  $(document).on('click', '.removeProduct', function() {
    var index = $(this).data('index');
    cart.splice(index, 1);
    $(this).closest('tr').remove();
    updateTotalPrice();
  });
 
  // 模拟添加商品到购物车的操作
  $('#addProduct').click(function() {
    var productName = $('#productName').val();
    var productPrice = parseFloat($('#productPrice').val());
    var productQuantity = parseInt($('#productQuantity').val(), 10);
    addToCart({
      name: productName,
      price: productPrice,
      quantity: productQuantity
    });
  });
 
  // 清空购物车
  $('#clearCart').click(function() {
    cart = [];
    $('#cartTable tbody').empty();
    updateTotalPrice();
  });
});

这个购物车的实现包括了基本的购物车功能,如添加商品、移除商品、更新总价等。这个例子简单易懂,非常适合作为学习如何构建购物

2024-08-15

unveil.js 是一个轻量级的图片懒加载插件,它使用 data-src 属性来替代常规的 src 属性,直到元素“出现”在视窗中才加载图片。这有助于提高页面加载性能,特别是对于拥有大量图片的网页。

以下是如何使用 unveil.js 的示例代码:

  1. 首先,确保在页面中包含了 jQuery 或 Zepto(unveil.js 的依赖)库。



<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="path/to/unveil.js"></script>
  1. 接着,在 HTML 中为你想要懒加载的图片设置 data-src 属性:



<img data-src="path/to/image.jpg" alt="描述文字">
  1. 最后,使用 unveil.js 初始化懒加载:



$(document).ready(function() {
    $("img").unveil(200); // 200 是可选的,表示在距离视窗多少像素时开始加载图片
});

这样就设置好了 unveil.js 的基本使用,当用户滚动页面时,远离视窗的图片将会被懒加载进来,从而提高页面加载性能。

2024-08-15

在jQuery中,我们可以使用各种不同的方法来处理元素的CSS样式。以下是一些常用的方法:

  1. 使用css()方法

css()方法用于获取或设置匹配元素集合中第一个元素的一个或多个样式属性的值。




$(selector).css(propertyName) // 获取属性值
$(selector).css(propertyName, value) // 设置属性值
$(selector).css({propertyName:value, propertyName:value,...}) // 设置多个属性值

例如:




$(document).ready(function(){
  $("p").css("background-color", "yellow");
  alert($("p").css("background-color"));
});
  1. 使用addClass()和removeClass()方法

addClass()removeClass()方法用于向匹配的元素添加或删除一个或多个类。




$(selector).addClass(className) // 添加类
$(selector).removeClass(className) // 删除类

例如:




$(document).ready(function(){
  $("p").addClass("myClass1");
  $("p").removeClass("myClass1");
});
  1. 使用toggleClass()方法

toggleClass()方法用于对匹配的元素进行切换类操作。如果类存在则删除,不存在则添加。




$(selector).toggleClass(className)

例如:




$(document).ready(function(){
  $("p").toggleClass("myClass1");
});
  1. 使用hasClass()方法

hasClass()方法用于判断匹配的元素是否包含指定的类。




$(selector).hasClass(className)

例如:




$(document).ready(function(){
  alert($("p").hasClass("myClass1"));
});
  1. 使用width()、height()、innerWidth()和innerHeight()方法

这些方法用于获取或设置元素的宽度、高度或内宽度、内高度。




$(selector).width() // 获取宽度
$(selector).width(value) // 设置宽度
$(selector).height() // 获取高度
$(selector).height(value) // 设置高度
$(selector).innerWidth() // 获取内宽度
$(selector).innerWidth(value) // 设置内宽度
$(selector).innerHeight() // 获取内高度
$(selector).innerHeight(value) // 设置内高度

例如:




$(document).ready(function(){
  alert($("p").width());
  $("p").width(200);
});
  1. 使用offset()方法

offset()方法用于获取或设置匹配元素在当前视口的相对偏移。




$(selector).offset() // 获取偏移
$(selector).offset(value) // 设置偏移

例如:




$(document).ready(function(){
  alert($("p").offset());
});
  1. 使用position()方法

position()方法用于获取匹配元素相对于父元素的偏移。




$(selector).position()

例如:




$(document).ready(function(){
  alert($("p").position());
});
  1. 使用scrollTop()和scrollLeft()方法

scrollTop()scrollLeft()

2024-08-15

在jQuery中,我们可以使用各种设计模式来编写更加模块化和可复用的代码。以下是一个使用装饰者模式的示例,它扩展了现有的jQuery插件功能,而不改变原始插件的结构。




// 假设我们有一个原始的jQuery插件
$.fn.originalPlugin = function() {
    // 插件的一些功能代码
    console.log('Original plugin functionality');
};
 
// 现在我们创建一个装饰者来扩展这个插件
$.fn.extendedPlugin = function() {
    // 首先运行原始插件的功能
    $.fn.originalPlugin.apply(this, arguments);
    
    // 然后添加额外的功能
    console.log('Additional functionality by the decorator');
};
 
// 使用装饰者插件
$(document).extendedPlugin();

在这个例子中,$.fn.extendedPlugin 是一个装饰者,它扩展了 $.fn.originalPlugin 的功能,同时保留了它的原始行为。这种模式在jQuery插件开发中非常有用,可以让插件变得更加灵活和可扩展。

2024-08-15

在jQuery中,获取元素通常使用以下方法:

  1. $(selector):使用CSS选择器获取元素,返回一个jQuery对象。



$('#elementId') // 获取ID为elementId的元素
$('.className') // 获取所有class为className的元素
$('p') // 获取所有的段落元素
  1. .find(selector):在当前jQuery对象集合中查找所有匹配选择器的元素。



$('div').find('.className') // 在所有div中查找class为className的元素
  1. .children(selector):获取当前元素集合中每个元素的直接子元素,可以传入选择器过滤。



$('div').children() // 获取所有div的直接子元素
$('div').children('.className') // 获取所有div的直接子元素中class为className的元素
  1. .parent(selector):获取当前元素集合中每个元素的父元素,可以传入选择器过滤。



$('.className').parent() // 获取class为className的元素的父元素
$('.className').parent('.parentClass') // 获取class为className的元素的父元素中class为parentClass的元素
  1. .parents(selector):获取当前元素集合中每个元素向上的所有父元素,可以传入选择器过滤。



$('.className').parents() // 获取class为className的元素的所有父元素
$('.className').parents('.parentClass') // 获取class为className的元素的所有父元素中class为parentClass的元素
  1. .siblings(selector):获取当前元素集合中每个元素的同级兄弟元素,可以传入选择器过滤。



$('.className').siblings() // 获取class为className的元素的所有同级兄弟元素
$('.className').siblings('.siblingClass') // 获取class为className的元素的所有同级兄弟元素中class为siblingClass的元素
  1. .eq(index):获取当前元素集合中指定索引(从0开始)的元素。



$('p').eq(0) // 获取第一个段落元素
  1. .first():获取当前元素集合中的第一个元素。



$('p').first() // 获取第一个段落元素
  1. .last():获取当前元素集合中的最后一个元素。



$('p').last() // 获取最后一个段落元素
  1. .filter(selector):通过选择器过滤当前元素集合中的元素。



$('p').filter('.className') // 获取class为className的所有段落元素
  1. .not(selector):从当前元素集合中移除匹配选择器的元素。



$('p').not('.excludeClassName') // 获取class不为excludeClassName的所有段落元素
  1. .add(selector):将匹配选择器的元素添加到当前jQuery对象集合中。



$('p').add('
2024-08-15

以下是一个使用jQuery Week Calendar的基本示例代码,它展示了如何初始化插件并设置基本选项:




<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>jQuery Week Calendar Example</title>
    <link rel="stylesheet" href="path/to/jquery.weekcalendar.min.css">
    <script src="path/to/jquery.min.js"></script>
    <script src="path/to/jquery.weekcalendar.min.js"></script>
    <script>
        $(document).ready(function(){
            var calendar = $('#calendar').weekcalendar({
                dataSource: [
                    // 这里可以是你的事件数据
                ],
                timeZone: 'Europe/London',
                hoursToShow: 48, // 显示两天的小时数
                daysToShow: 7, // 显示一周的天数
                title: function(start, end) {
                    return 'Week of ' + start.format('MMMM D, YYYY');
                },
                // 其他选项...
            });
        });
    </script>
</head>
<body>
    <div id="calendar"></div>
</body>
</html>

这段代码首先引入了必要的CSS和JavaScript文件,然后在文档加载完成后初始化了Week Calendar插件,并设置了一些基本的选项,如数据源、时区、要显示的小时数和天数以及标题的回调函数。这个示例提供了一个简单的起点,可以根据具体需求进行扩展和定制。

2024-08-15



<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>全选、全不选与反选示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  $("#selectAll").click(function(){
    $(".checkBox").prop('checked', true);
  });
  $("#unselectAll").click(function(){
    $(".checkBox").prop('checked', false);
  });
  $("#reverseSelection").click(function(){
    $(".checkBox").each(function(){
      $(this).prop('checked', !$(this).prop('checked'));
    });
  });
});
</script>
</head>
<body>
 
<button id="selectAll">全选</button>
<button id="unselectAll">全不选</button>
<button id="reverseSelection">反选</button>
 
<form action="">
  <input type="checkbox" class="checkBox" name="option1" value="option1">选项1<br>
  <input type="checkbox" class="checkBox" name="option2" value="option2">选项2<br>
  <input type="checkbox" class="checkBox" name="option3" value="option3">选项3<br>
  <input type="checkbox" class="checkBox" name="option4" value="option4">选项4<br>
</form>
 
</body>
</html>

这段代码使用jQuery实现了全选、全不选和反选的功能。点击相应的按钮会对页面上的复选框进行相应的操作。这是一个简单的示例,但在实际开发中可以根据需要进行扩展和应用。

2024-08-15

jQuery 提供了几种用于获取和设置元素位置的方法:

  1. position() - 获取相对于父元素的位置。
  2. offset() - 获取相对于文档的位置。
  3. offsetParent() - 获取最近的定位父元素。

示例代码:




<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery 位置示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
 
<div style="position: relative;">
  <div id="box" style="width: 100px; height: 100px; background: red; position: absolute; top: 20px; left: 20px;">
  </div>
</div>
 
<script>
$(document).ready(function() {
  var position = $('#box').position();
  console.log('相对于父元素的位置:', position);
 
  var offset = $('#box').offset();
  console.log('相对于文档的位置:', offset);
 
  var offsetParent = $('#box').offsetParent();
  console.log('最近的定位父元素:', offsetParent);
});
</script>
 
</body>
</html>

在这个例子中,#box 元素的位置被获取并在控制台输出。position() 返回相对于直接父元素的上下左右偏移量;offset() 返回相对于文档的位置;offsetParent() 返回最近的定位(非 static)父元素。

2024-08-15

在jQuery中,可以使用.attr()方法来修改元素的class属性。这个方法可以用来设置或返回元素的class属性值。

以下是一些使用.attr()方法修改class属性的例子:

  1. 添加一个新的class到元素上:



$('selector').attr('class', 'new-class');
  1. 在元素的现有class上添加一个新的class:



$('selector').attr('class', function(index, currentClass) {
  return currentClass + ' new-class';
});
  1. 删除元素的一个class:



$('selector').removeClass('class-to-remove');
  1. 切换一个class:



$('selector').toggleClass('class-to-toggle');

请注意,如果你只是想要添加或删除一个class,而不是全部替换,你应该使用.addClass(), .removeClass(), 或 .toggleClass() 方法,因为这些方法提供了更好的性能,并且能够更好地处理复杂的class操作。

2024-08-15

以下是使用jQuery插件Swiper实现轮播图的基本示例代码:

首先,确保在你的HTML文件中引入了Swiper的CSS和JavaScript文件:




<!-- 引入Swiper的CSS -->
<link rel="stylesheet" href="path/to/swiper-bundle.min.css">
 
<!-- 引入jQuery库 -->
<script src="path/to/jquery.min.js"></script>
<!-- 引入Swiper的JS -->
<script src="path/to/swiper-bundle.min.js"></script>

然后,在HTML文件中添加轮播图所需的HTML结构:




<div class="swiper-container">
    <div class="swiper-wrapper">
        <div class="swiper-slide"><img src="path/to/image1.jpg" alt="Image 1"></div>
        <div class="swiper-slide"><img src="path/to/image2.jpg" alt="Image 2"></div>
        <div class="swiper-slide"><img src="path/to/image3.jpg" alt="Image 3"></div>
        <!-- 更多 slide -->
    </div>
    <!-- 如果你需要分页器 -->
    <div class="swiper-pagination"></div>
 
    <!-- 如果你需要导航按钮 -->
    <div class="swiper-button-prev"></div>
    <div class="swiper-button-next"></div>
 
    <!-- 如果你需要滚动条 -->
    <div class="swiper-scrollbar"></div>
</div>

最后,在<script>标签中或者一个外部的JS文件中初始化Swiper:




var mySwiper = new Swiper('.swiper-container', {
    // 选项
    loop: true, // 循环模式
    // 如果需要分页器
    pagination: {
      el: '.swiper-pagination',
    },
    // 如果需要前进后退按钮
    navigation: {
      nextEl: '.swiper-button-next',
      prevEl: '.swiper-button-prev',
    },
    // 如果需要滚动条
    scrollbar: {
      el: '.swiper-scrollbar',
    },
  });

这样就可以实现一个基本的轮播图了。根据你的具体需求,你可以调整选项来实现不同的效果,例如自动播放、延迟、 effect等。