Logo

bootstrapSwitch

photo

2023年10月31日

一、

1、bootstrapSwitch 默认选项,加上checked表示true,不加表示false
<input type="checkbox" id="" name="status" checked data-size="small" value="1">
2、swich配置
$('[name="status"]').bootstrapSwitch({
    onText: "上架",
    offText: "下架",
    onColor: "danger",
    offColor: "info",
    size: "small",
    onSwitchChange: function (event, state) {
        if (state == true) {
            $(this).val("1");
        } else {
            $(this).val("2");
        }
    }
})
3、触发swich事件
    "switchChange": function () {
        $('[name="switch"]').on('switchChange.bootstrapSwitch', function (event, state) {
            console.log(event);
            if (state == true) {
                $.get("/gift/updatestatus",
                    { id: $(this).attr("id"), status: '0' },
                    function (data) {
                        console.log(data.result); location.reload()
                    })
            } else {
                $.get("/gift/updatestatus",
                    { id: $(this).attr("id"), status: '1' },
                    function (data) {
                        console.log(data.result); location.reload()
                    })
            }
        });
    },

表格的话,需要在加载回调内执行swich配置

            onLoadSuccess: function () {
                list.initSwitch();
            }

 

橙子主题打折出售

其实我不卖,主要是这里是放广告的,所以就放了一个
毕竟主题都没做完,卖了也是坑.

购买它
本文为原创文章,请注意保留出处!

1.根目录新建三个文件:分别对应基本环境.env(始终加载)、开发环境.env.developmen...Vue3第七篇:Vite多环境配置

热门文章

Navicat Premium 12.0.22 安装与破解 一、安装  NavicatPremium12.0.22的下载链接:https://pan.ba...NavicatPremium12.0.22安装与破解 作者:Pastore Antonio
1515 浏览量
C# JArray与JObject 的使用 STEP1、usingNewtonsoft.Json.Linq;STEP2、如何获取json里的...C#JArray与JObject的使用 作者:Pastore Antonio
1465 浏览量
解决mysql的配置ONLY_FULL_GROUP_BY引起的错误 由于自己的本地网站环境使用了mysql8.0的版本,在测试一个groupby的sql查...解决mysql的配置ONLY_FULL_GROUP_BY引起的错误 作者:Pastore Antonio
1448 浏览量
Windows server 2016 英文服务器安装中文语言包教程 1、下载windowsserver2016语言包下载地址:https://pan.baidu....Windowsserver2016英文服务器安装中文语言包教程 作者:Pastore Antonio
1406 浏览量
assembly(全局程序集缓存)中dll的导入和导出 本文主要讲一下关于assembly中的dll是怎么导入和导出的。浏览量:1,468 作者:Pastore Antonio
1403 浏览量