先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新Web前端全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上前端开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip1024c (备注前端)
正文
品优购客户端
关于我们 | 联系我们 | 联系客服 | 商家入驻 | 营销中心 | 手机品优购 | 友情链接 | 销售联盟 | 品优购社区 | 品优购公益 | English Site | Contact U
地址:北京市昌平区建材城西路金燕龙办公楼一层 邮编:100096 电话:400-618-4000 传真:010-82935100 邮箱: zhanghj+itcast.cn
京ICP备08001421号京公网安备110108007702
CSS样式代码:
.car-header {
padding: 20px 0;
}
.car-logo img {
vertical-align: middle;
}
.car-logo b {
font-size: 20px;
margin-top: 20px;
margin-left: 10px;
}
.cart-filter-bar {
font-size: 16px;
color: #E2231A;
font-weight: 700;
}
.cart-filter-bar em {
padding: 5px;
border-bottom: 1px solid #E2231A;
}
.cart-thead {
height: 32px;
line-height: 32px;
margin: 5px 0 10px;
padding: 5px 0;
background: #f3f3f3;
border: 1px solid #e9e9e9;
border-top: 0;
position: relative;
}
.cart-thead>div,
.cart-item>div {
float: left;
}
.t-checkbox,
.p-checkbox {
height: 18px;
line-height: 18px;
padding-top: 7px;
width: 122px;
padding-left: 11px;
}
.t-goods {
width: 400px;
}
.t-price {
width: 120px;
padding-right: 40px;
text-align: right;
}
.t-num {
width: 150px;
text-align: center;
}
.t-sum {
width: 100px;
text-align: right;
}
.t-action {
width: 130px;
text-align: right;
}
.cart-item {
height: 160px;
border-style: solid;
border-width: 2px 1px 1px;
border-color: #aaa #f1f1f1 #f1f1f1;
background: #fff;
padding-top: 14px;
margin: 15px 0;
}
.check-cart-item {
background: #fff4e8;
}
.p-checkbox {
width: 50px;
}
.p-goods {
margin-top: 8px;
width: 565px;
}
.p-img {
float: left;
border: 1px solid #ccc;
padding: 5px;
}
.p-msg {
float: left;
width: 210px;
margin: 0 10px;
}
.p-price {
width: 110px;
}
.quantity-form {
width: 80px;
height: 22px;
}
.p-num {
width: 170px;
}
.decrement,
.increment {
float: left;
border: 1px solid #cacbcb;
height: 18px;
line-height: 18px;
padding: 1px 0;
width: 16px;
text-align: center;
color: #666;
margin: 0;
background: #fff;
margin-left: -1px;
}
.itxt {
float: left;
border: 1px solid #cacbcb;
width: 42px;
height: 18px;
line-height: 18px;
text-align: center;
padding: 1px;
margin: 0;
margin-left: -1px;
font-size: 12px;
font-family: verdana;
color: #333;
-webkit-appearance: none;
}
.p-sum {
font-weight: 700;
width: 145px;
}
/* 结算模块 */
.cart-floatbar {
height: 50px;
border: 1px solid #f0f0f0;
background: #fff;
position: relative;
margin-bottom: 50px;
line-height: 50px;
}
.select-all {
float: left;
height: 18px;
line-height: 18px;
padding: 16px 0 16px 9px;
white-space: nowrap;
}
.select-all input {
vertical-align: middle;
display: inline-block;
margin-right: 5px;
}
.operation {
float: left;
width: 200px;
margin-left: 40px;
}
.clear-all {
font-weight: 700;
margin: 0 20px;
}
.toolbar-right {
float: right;
}
.amount-sum {
float: left;
}
.amount-sum em {
font-weight: 700;
color: #E2231A;
padding: 0 3px;
}
.price-sum {
float: left;
margin: 0 15px;
}
.price-sum em {
font-size: 16px;
color: #E2231A;
font-weight: 700;
}
.btn-area {
font-weight: 700;
width: 94px;
height: 52px;
line-height: 52px;
color: #fff;
text-align: center;
font-size: 18px;
font-family: “Microsoft YaHei”;
background: #e54346;
overflow: hidden;
}
接下来就是我们的重头戏!
JQuery代码:
$(function() {
// 效果1:全选按钮与不全选按钮
// change()方法的使用针对于文本域textarea和select元素,当失去焦点时发生改变效果
$(‘.checkall’).change(function() {
console.log($(this).prop(“checked”));
$(“.j-checkbox”).prop(“checked”, $(this).prop(“checked”));
// prop(“属性”,“属性值”);
// 注意:prop() 除了普通属性操作,更适合操作表单属性:disabled / checked / selected 等。
// 当选中复选框背景颜色就改变–需要判断
if ($(this).prop(“checked”)) {
// 全选中了复选框 则所有商品的背景色改变添加上样式check-cart-item
$(“.cart-item”).addClass(“check-cart-item”);
} else {
$(“.cart-item”).removeClass(“check-cart-item”);
}
});
// 效果2:
// 如果小复选框被选中的个数等于3 就应该把全选按钮给勾上
// :cheecked就是指被选中的按钮
$(‘.j-checkbox’).change(function() {
// if(被选中的小复选框的个数===3){
// 就要选中全选框按钮
// }else{
// 不要选中全选按钮
// }
// console.log($(“.j-checkbox:checked”).length);
if ($(“.j-checkbox:checked”).length == $(“.j-checkbox”).length) {
$(“.checkall”).prop(“checked”, true);
} else {
$(“.checkall”).prop(“checked”, false);
}
// 当值选中一个复选框的话就只有一个改变背景色
if ($(this).prop(“checked”)) {
// 让当前的商品添加check-cart-item类名
$(this).parents(“.cart-item”).addClass(“check-cart-item”);
} else {
$(this).parents(“.cart-item”).removeClass(“check-cart-item”);
}
});
// 3.增减商品数量模块,首先声明一个变量,当我们点击+号(increment),就让这个值++然后赋值给文本框
// 当我每次点击加号.increment (加号的类名),它的兄弟文本框就增加数量
// .increment 加号的类名
$(“.increment”).click(function() {
// 获取到当前兄弟文本框的值 (加号边上的文本框内的值)
var n = $(this).siblings(“.itxt”).val();
console.log(n);
n++;
$(this).siblings(“.itxt”).val(n);
// 计算小计 根据文本框的值*当前商品的价格=商品的小计
var p = $(this).parent().parent().siblings(“.p-price”).html(); // 先获取文本框中的值
// console.log§;
p = p.substr(1);
// console.log§;去除掉了¥
var price = (p * n).toFixed(2);
// 小计模块:
$(this).parent().parent().siblings(“.p-sum”).html(“¥” + price);
getSum();
});
// .decrement 减号的类名
$(“.decrement”).click(function() {
// 获取到当前兄弟文本框的值 (加号边上的文本框内的值)
var n = $(this).siblings(“.itxt”).val();
if (n == 1) {
return false; //对按钮的操作
}
// console.log(n);
n–;
$(this).siblings(“.itxt”).val(n);
// 再赋值
/* way1:
if (n <= 1) {
$(this).siblings(“.itxt”).val(1);
} else {
$(this).siblings(“.itxt”).val();
} */
// 计算小计 根据文本框的值*当前商品的价格=商品的小计
// 减号部分就直接赋值++的代码即可
// var p = $(this).parent().parent().siblings(“.p-price”).html(); // 先获取文本框中的值
var p = $(this).parents(“.p-num”).siblings(“.p-price”).html();
// console.log§;
p = p.substr(1);
// console.log§;去除掉了¥
// 小计模块:
// toFixed(2)可以让我们保留2位小数
// $(this).parent().parent().siblings(“.p-sum”).html(“¥” + p * n);
var price = (p * n).toFixed(2);
// $(this).parents(“.p-num”).siblings(“.p-sum”).html(“¥” + p * n);
$(this).parents(“.p-num”).siblings(“.p-sum”).html(“¥” + price);
getSum();
});
// 4.用户直接输入数值(不是点加号来改变数值)修改文本框的值 计算 小计模块
$(“.itxt”).change(function() {
// 得到文本框里面的值*小计模块
var n = $(this).val();
// 当前商品的单价
var p = $(this).parents(“.p-num”).siblings(“.p-price”).html();
p = p.substr(1);
var price = (p * n).toFixed(2);
$(this).parents(“.p-num”).siblings(“.p-sum”).html(“¥” + price);
getSum();
});
// 计算总件数和总钱数 封装一个函数计算
getSum(); //刷新后不会改变
function getSum() {
var count = 0;
var money = 0;
// 回调函数–
$(‘.itxt’).each(function(i, ele) {
count += parseInt($(ele).val());
});
$(“.amount-sum em”).text(count);
// 总钱数的话就是将
$(“.p-sum”).each(function(i, ele) {
// 获取到的元素去掉¥
money += parseFloat($(ele).text().substr(1));
});
$(“.price-sum em”).text(“¥” + money.toFixed(2));
}
// 6.删除商品板块
// (1)当点击“删除”按钮购物车就清空
$(“.p-action a”).click(function() {
$(this).parents(“.cart-item”).remove();
getSum();
});
结束
一次完整的面试流程就是这样啦,小编综合了腾讯的面试题做了一份前端面试题PDF文档,里面有面试题的详细解析,分享给小伙伴们,有没有需要的小伙伴们都去领取!
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
t’).each(function(i, ele) {
count += parseInt($(ele).val());
});
$(“.amount-sum em”).text(count);
// 总钱数的话就是将
$(“.p-sum”).each(function(i, ele) {
// 获取到的元素去掉¥
money += parseFloat($(ele).text().substr(1));
});
$(“.price-sum em”).text(“¥” + money.toFixed(2));
}
// 6.删除商品板块
// (1)当点击“删除”按钮购物车就清空
$(“.p-action a”).click(function() {
$(this).parents(“.cart-item”).remove();
getSum();
});
结束
一次完整的面试流程就是这样啦,小编综合了腾讯的面试题做了一份前端面试题PDF文档,里面有面试题的详细解析,分享给小伙伴们,有没有需要的小伙伴们都去领取!
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
[外链图片转存中…(img-EMNiWeDx-1713316583871)]
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!