我的编程空间,编程开发者的网络收藏夹
学习永远不晚

jQuery实现简易商城系统项目实操

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

jQuery实现简易商城系统项目实操

一.效果图

二.body

<body> 
<table border="1" cellpadding="0" cellspacing="0"> 
	<tr>
    	<th><input type='checkbox' name="c1"/>全选</th>
        <th>商品信息</th>
        <th>宜美惠价</th>
        <th>数量</th>
        <th>操作</th>

    </tr>

   	<tr class="tr_0">
       	<td>
           	<input name="" type="checkbox" value=""/>
           </td>
           <td>
           	<img class="lazy" data-src="images/sang.gif" class="products"/><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >天堂雨伞</a></td><td>¥32.9元
           </td>
           <td>
         	  	<img class="lazy" data-src="images/subtraction.gif" width="20" height="20"/>
           	<input type="text" class="quantity" value="1"/>
           	<img class="lazy" data-src="images/add.gif" width="20" height="20"/>
          </td>
          <td>
          		<a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="del">删除</a>
          </td>
       </tr>
       <tr>
       	<td>
           	<input name="" type="checkbox" value=""/>
           </td>
           <td>
           	<img class="lazy" data-src="images/iphone.gif" class="products"/><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >苹果手机iphone5</a></td><td>¥3339元
           </td>
           <td>
         	  	<img class="lazy" data-src="images/subtraction.gif" width="20" height="20"/>
           	<input type="text" class="quantity" value="1"/>
           	<img class="lazy" data-src="images/add.gif" width="20" height="20"/>
          </td>
          <td>
          		<a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="del">删除</a>
          </td>
       </tr>
 </table>
 <a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="add">添加</a>
</body>

三.jQuery

<script type="text/javascript" class="lazy" data-src="js/jquery-1.12.4.js" ></script>
<script>
	$(function(){
		//点击加号触发事件
		$('[class="lazy" data-src="images/add.gif"]').click(function(){
			var num=parseInt($(this).prev().val());
			$(this).prev().val(num+1);
		});
		//点击减号触发事件
		$('[class="lazy" data-src="images/subtraction.gif"]').click(function(){
			var num=parseInt($(this).next().val());
			if(num<=0){
				return alert('不能再少了!');
			};
			$(this).next().val(num-1);
		});
		//删除事件
		$('[class="del"]').click(function(){
			$(this).parent().parent().remove();
		});
		//选中框,全选框事件
		$('[type="checkbox"]').click(function(){
			var len=$('[type="checkbox"]').length;
			var clen=$('[type="checkbox"]:checked').length;
			var t1=$('[name="c1"]').prop("checked");
			var pd=$(this).parent().text();
			if(pd=="全选"){
				$('[name="c1"]').prop("checked",t1);
				$('[type="checkbox"]').prop("checked",t1);
				return "";
			}
			if(clen==len-1 & t1==false){
				$('[name="c1"]').prop("checked",true);
			}else if(clen>=len-1 & t1==true){
				$('[name="c1"]').prop("checked",false);
			}
		});
		//添加事件
		$('[class="add"]').click(function(){
			var newD=$('tr:eq(2)').clone();
			$('tr:last').after(newD);
		});
		
		//输入框
		$('[type="text"]').change(function(){
			var te=$(this).val();
			te=te.toString();
			for(i=0;i<te.length;i++){
				if(i==2 || te[i]=="."){
					alert('不能超过100,不能有小数');
					return $(this).val(1);
				};
			};
			if(te<=0 || isNaN(te)){
				$(this).val(1);
			};
			
		});
	});
</script>

四.css

<style type="text/css" >
*{
	font-size:12px;
}
</style>

五.小结

本章使用jQuery的方式实现了一个简易的商城系统,这一个比较潦草,明天再实现一个比较好看的.

到此这篇关于jQuery实现简易商城系统项目实操的文章就介绍到这了,更多相关jQuery商城系统内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

jQuery实现简易商城系统项目实操

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

jQuery怎么实现简易商城系统

本篇内容主要讲解“jQuery怎么实现简易商城系统”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“jQuery怎么实现简易商城系统”吧!一.效果图二.body
2023-07-02

jQuery怎么利用DOM遍历实现商城结算系统

今天小编给大家分享一下jQuery怎么利用DOM遍历实现商城结算系统的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。效果图一.
2023-07-02

Java如何实现花店商城系统

这篇文章给大家分享的是有关Java如何实现花店商城系统的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、项目简述本系统功能包括:商品的分类展示,用户的注册登录,购物车,订单结算,购物车加减,后台商品管理,分类管理
2023-06-22

Java如何实现鲜花商城系统

本文小编为大家详细介绍“Java如何实现鲜花商城系统”,内容详细,步骤清晰,细节处理妥当,希望这篇“Java如何实现鲜花商城系统”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。项目介绍该项目为前后台项目,分为普通用
2023-06-30

Java如何实现女装商城系统

这篇文章将为大家详细讲解有关Java如何实现女装商城系统,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。一、项目简述功能javaweb 网上商城系统,前台+后台管理,用户注册,登录,上哦展示,分组展示,搜索
2023-06-25

编程热搜

目录