码迷,mamicode.com
首页 >  
搜索关键字:here document    ( 26655个结果
截图函数
function captureImage () { var scale = 0.25; var txt = document.querySelector('div p .external'); video = document.querySelector("video"); var canvas  ...
分类:其他好文   时间:2021-06-30 18:39:11    阅读次数:0
Statistics of subscribers of each platform from June 2020 to June 2021
Description:Here will use pictures and text to report the statistics of the number of subscribers. Total number of subscribers:4243 1.toutiao(今日头条)Dot ...
分类:其他好文   时间:2021-06-30 18:09:06    阅读次数:0
Statistics of pageviews by platform from June 2020 to June 2021
Description:Here will use pictures and text to report traffic statistics. Total reading volume on all platforms:85653 Total playback volume on all pla ...
分类:其他好文   时间:2021-06-30 18:08:31    阅读次数:0
Ake杂货铺
Js得到选中的文字 (function getSelectionText() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.selection && document ...
分类:其他好文   时间:2021-06-28 21:07:38    阅读次数:0
帝国CMS动态页支持栏目导航标签,万能标签,循环子栏目标签
帝国CMS动态页是不支持标签调用的,所以在制作网站时非常不爽,需要手动的进行静态页制作。分享一种利用JS来实现支持栏目导航标签,万能标签,循环子栏目数据标签的方法。第一步:在【模板】下面增加标签模板,标签模板内容如下:页面模板内容(*):[!--empirenews.listtemp--]<!--l ...
分类:其他好文   时间:2021-06-28 20:48:26    阅读次数:0
cardinality和selectivity的关系?
cardinality = 某一列中不同值的个数 selectivity = 经过某个谓词过滤后的行数 / 表的总行数 * 100% selectivity = 索引列的cardinality / 表的总行数 * 100% 两种定义,前者是涉及where条件,后者是涉及索引。个人认为第一种更准确一点 ...
分类:其他好文   时间:2021-06-28 20:39:45    阅读次数:0
JQuery
JavaScript库,是一个封装好的集合(方法和函数)。简单说就是一个js文件,里面是堆原生js代码进行了封装。 Jquery是一个JS库,就是为了快速方便操作DOM,里面基本都是函数(方法)。 JQuery优点: 轻量级,核心文件才几十kb 跨浏览器兼容,基本兼容了现在主流的浏览器 链式编程,隐 ...
分类:Web程序   时间:2021-06-28 20:29:42    阅读次数:0
Oracle 从 dual 表中查询返回多行记录
select 1 as id,'是' as text from dual union all select 0 as id ,'否' as text from dual 同时查询出十条数据 select * from dual connect by 0 + level <= 10; 按照这个特性计算 ...
分类:数据库   时间:2021-06-28 18:48:46    阅读次数:0
plsql创建一个表和别的表结构一样
--创建无数据但表结构相同的表 create table ASRS_TASKDETAIL_LV_HISTORY as select * from ASRS_TASKDETAIL_LV where 1=0 --如果要复制相应的数据就改where条件,这个语句复制了源表的字段数量、顺序、类型、是否可为空 ...
分类:数据库   时间:2021-06-28 18:34:36    阅读次数:0
Oracle SQL 相关语句
1、在查询中根据A字段关联另一个表,并用另一个表A字段对应的另一个字段替换本表中A字段的值。 virtualid表,两列label, number;virtualid_zd表,两列name, number,怎么在查询 ...
分类:数据库   时间:2021-06-28 18:26:05    阅读次数:0
26655条   上一页 1 2 3 4 5 ... 2666 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!