1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > jQuery插件seat-charts使用详解(code)

jQuery插件seat-charts使用详解(code)

时间:2023-09-19 21:52:56

相关推荐

jQuery插件seat-charts使用详解(code)

web前端|js教程

seat-charts,jQuery,详解

web前端-js教程这是一款基于JQuery实现的在线选座位插件seat-charts源码,是一款适合机票,电影票,客车票选座的jquery.seat-charts插件。点击左侧的座位即可在右侧即时显示座位信息,并且可以有计算累加的功能。

仿什么值得买淘客源码模版,ubuntu无网线联网,爬虫网站源代码,中标软件php,seo课件pptlzw

特点:支持自定义座位类型和价格,支持自定义样式,支持设置不可选的座位,也支持键盘控制选座。

运行效果图:

论坛类网站源码,vscode怎么展开所有代码,ubuntu挂起指令,服务那边没有tomcat,猛龙变身爬虫,php如何返回json,陕西短视频seo专业操作,html课程网站模板,php课程设计网页模板lzw

三得公益源码开发,ubuntu删除frps,tomcat非阻塞io吗,在线小说爬虫,php做一个讨论区,荔湾区seo账号代运营机构lzw

小提示:浏览器中如果不能正常运行,可以尝试切换浏览模式。

为大家分享的jQuery在线选座位插件seat-charts特效代码如下

jQuery在线选座位插件seat-charts

机头

已选中的座位 (0):

总价: $0

var firstSeatLabel = 1; $(document).ready(function() { var $cart = $(#selected-seats), $counter = $(#counter), $total = $(#total), sc = $(#seat-map).seatCharts({ map: [ ff_ff, ff_ff, ee_ee, ee_ee, ee_, ee_ee, ee_ee, ee_ee, ee_ee, eeeee, ], seats: { f: { price : 100, classes : first-class, //your custom CSS class category: 头等舱 }, e: { price : 40, classes : economy-class, //your custom CSS class category: 经济舱 }}, naming : { top : false, getLabel : function (character, row, column) { return firstSeatLabel++; }, }, legend : { node : $(#legend), items : [ [ f, available, 头等舱 ], [ e, available, 经济舱], [ f, unavailable, 已预定] ] }, click: function () { if (this.status() == available) { $(\+this.data().category+this.settings.label+号座位+:

价格:$+this.data().price+ [删除]) .attr(id,cart-item-+this.settings.id) .data(seatId, this.settings.id) .appendTo($cart); $counter.text(sc.find(selected).length+1); $total.text(recalculateTotal(sc)+this.data().price); return selected; } else if (this.status() == selected) { //update the counter $counter.text(sc.find(selected).length-1); //and total $total.text(recalculateTotal(sc)-this.data().price); //remove the item from our cart $(#cart-item-+this.settings.id).remove(); //seat has been vacated return available; } else if (this.status() == unavailable) { //seat has been already booked return unavailable; } else { return this.style(); } } }); //this will handle "[cancel]" link clicks $(#selected-seats).on(click, .cancel-cart-item, function () { //lets just trigger Click event on the appropriate seat, so we don have to repeat the logic here sc.get($(this).parents(li:first).data(seatId)).click(); }); //lets pretend some seats have already been booked sc.get([1_2, 4_1, 7_1, 7_2]).status(unavailable); }); function recalculateTotal(sc) { var total = 0; //basically find every selected seat and sum its price sc.find(selected).each(function () { total += this.data().price; }); return total; }

适用浏览器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗.

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。