1 <!-- fadeIn() 淡入 2 fadeOut() 淡出 3 fadeToggle() 切换淡入淡出 4 5 hide() 隐藏元素 6 show() 显示元素 7 toggle() 切换元素的可见状态 8 9 slideDown() 向下展开 10 slideUp() 向上卷起 11 s ...
分类:
Web程序 时间:
2020-03-14 18:24:17
阅读次数:
69
``` $(".btn").live("click",function(){ $(this).toggle( function () { //事件 1 console.log('点击') }, function () { //事件 2 console.log('再点击') } ).trigger('... ...
分类:
Web程序 时间:
2020-03-06 15:25:42
阅读次数:
74
将代码复制,存到一个html文件中,打开即可。代码示例: <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=gbk" /> <title>Web sockets test</title> <script ...
分类:
Web程序 时间:
2020-03-06 10:29:27
阅读次数:
94
[toc] 事故现场 mysql执行update操作报错: sql如下: 报错如下: Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses ...
分类:
数据库 时间:
2020-02-26 21:14:05
阅读次数:
84
首发于 "Enaium的个人博客" 添加Event 下载 " " 放在 里 然后在 里面添加 在 里面添加 、`onEnable() onDisable() Toggle()` 注入Mixin 在 里面添加以下内容 添加Sprint 在 里面新建一个 包 在 包里面新建 类 内容 然后添加到 里面 ...
分类:
其他好文 时间:
2020-02-22 11:29:44
阅读次数:
75
<template> <div class="hello"> <div class="toggle" @click="fullScreen = !fullScreen" v-show="fullScreen">toggle</div> <transition name="normal" @enter ...
分类:
其他好文 时间:
2020-02-13 19:35:27
阅读次数:
74
这是因为你绑定二级域名后,Cookie域不同了,可以通过以下修改来实现同域。 首先需要打开application/config.php, 修改其中的url_domain_deploy改为true 因为我们是多域名了,还需要设置session和cookie的域名,如下: 'session' => [ ...
分类:
其他好文 时间:
2020-02-10 13:22:56
阅读次数:
63
效果先看 知识点 bootstrap下拉框由div>button ul>li>a 构成 div的类为:dropdown a标签必须写 button的类为: dropdown-toggle 必带属性:data-toggle="dropdown" ul的类为:dropdown-menu 获取事件触发的对 ...
分类:
其他好文 时间:
2020-02-09 16:54:02
阅读次数:
69
1、头部:主要运用了栅格系统(对于不同的设备应该如何布局来适应屏幕,如何隐藏元素等) <div class="container"> <div class="row"> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <img src="img/ ...
分类:
其他好文 时间:
2020-01-29 21:26:30
阅读次数:
80
1、使用 hide() 和 show() 方法来隐藏和显示 HTML 元素(这里是img) <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>定时弹出图片——图片弹出的效果</title> <script type="text/j ...
分类:
其他好文 时间:
2020-01-25 22:02:41
阅读次数:
250