var allEle = document.getElementsByTagName('*'); console.log(allEle) for(var i=0;i<allEle.length;i++){ if(allEle[i].nodeName=="INPUT"){ // $(allEle[i] ...
分类:
编程语言 时间:
2021-02-25 11:45:18
阅读次数:
0
prepare_kernel_cred - Prepare a set of credentials for a kernel service 使用指定进程的 real_cred 去构造一个新的 cred,不是引用,不是引用,不是引用,而是创建一个新的 cred 源码版本:Linux Kernel ...
分类:
系统相关 时间:
2021-02-24 13:11:59
阅读次数:
0
查看sql_model参数命令:SELECT @@SESSION.sql_mode; 解决方法:命令行输入set sql_mode =’STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENG ...
分类:
数据库 时间:
2021-02-24 12:58:47
阅读次数:
0
本文出自:https://www.cnblogs.com/2186009311CFF/p/14435558.html uniapp插件(示例可直接运行查看效果):https://ext.dcloud.net.cn/plugin?id=4194 预览效果: ay-lottery组件: <templat ...
分类:
移动开发 时间:
2021-02-24 12:53:03
阅读次数:
0
简介 实现List接口 允许任何元素,包括null 大致和Vector相当,除了ArrayList不是线程安全的 size()、isEmpty()、get()、set()、iterator()、listIterator()时间复杂度为常数 add()与增加的节点数相等,增加n个,O(n) 其他操作都 ...
分类:
其他好文 时间:
2021-02-23 14:37:54
阅读次数:
0
说明:当前测试为thinkphp5环境下的代码、不考虑用户uid问题,只考虑库存问题 准备: 1. 新建两个表(goods、orders) CREATE TABLE `goods` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT ...
分类:
其他好文 时间:
2021-02-23 14:30:21
阅读次数:
0
常用的命令: npm config set prefix "node-global路径" npm config set cache "node-cache路径" npm config set registry http://registry.npm.taobao.org/ npm config ls ...
分类:
Web程序 时间:
2021-02-23 14:25:07
阅读次数:
0
今天数据库出现点问题,请教同事给我看看,发现他不能通过 ip 地址访问我的本地 mysql 服务器。于是上网找了一下,步骤如下: 1、cmd 打开指令页面 c:\>mysql -u root -p 输入密码 mysql> 2、打开 mysql 数据库 use mysql 检索 user 和 host ...
分类:
数据库 时间:
2021-02-23 14:16:19
阅读次数:
0
pyspark有个bug, 虽然下面代码写了 write.mode("overwrite")但是不生效 spark.conf.set("hive.exec.dynamic.partition.mode", "constrict") db_df.repartition(1).write.mode("o ...
分类:
其他好文 时间:
2021-02-23 14:14:20
阅读次数:
0
<html> <head> <meta charset="utf-8"> <title>首页搜索栏目</title> </head> <body> </body> </html>``` ...
分类:
Web程序 时间:
2021-02-22 12:26:00
阅读次数:
0