Here’s to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They’re ...
分类:
其他好文 时间:
2021-05-24 16:46:31
阅读次数:
0
如下图,这种一个元素由两个标签控制的,用js改值时需要两个标签的属性值都改 改值代码 js_code = 'a = document.getElementById("lostdate");' \ 'a.removeAttribute("readonly");' \ 'a.value = "2021- ...
分类:
编程语言 时间:
2021-05-24 16:17:00
阅读次数:
0
1.定义-- xml: eXtensible Markup Language可扩展标记语言,用来传输和存储数据-- xml是独立于软件和硬件的信息传输工具,数据以纯文本格式进行存储 2.知识点-- xml和html区别xml用来传输和存储数据,焦点是数据的内容,旨在传输信息;xml标签没有被预定义, ...
分类:
其他好文 时间:
2021-05-24 15:48:43
阅读次数:
0
#添加全文索引 ALTER TABLE `biz_document` ADD FULLTEXT f_content (`content`) with parser ngram; ALTER TABLE `biz_document` ADD FULLTEXT f_title (`title`) wit ...
分类:
数据库 时间:
2021-05-24 15:08:40
阅读次数:
0
有个项目用ckeditor富文本插件了,客户要有首行缩进按钮, 最开始用的官网上的document模式,这个模式从work直接拷贝过来的格式很友好,但我们的项目居然用了 *{ margin: 0; padding: 0; box-sizing: border-box; } 这个东西去除样式,这会导致 ...
分类:
其他好文 时间:
2021-05-24 14:29:34
阅读次数:
0
An Azure storage account contains all of your Azure Storage data objects: blobs, file shares, queues, tables, and disks. The storage account provides ...
分类:
其他好文 时间:
2021-05-24 14:07:40
阅读次数:
0
querySelector() 返回匹配指定选择器的第一个元素。 querySelectorAll() 返回所有的节点元素 语法document.querySelector(CSS selectors) getElementsByTagName() //返回的是所有的节点,是一个类数组对象 getE ...
分类:
Web程序 时间:
2021-05-24 13:50:49
阅读次数:
0
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:
其他好文 时间:
2021-05-24 13:17:52
阅读次数:
0
Document对象 通过Selenium获取元素属性.注释:Selenium获取元素属性,只能获取属性,不能修改属性值 1 # 通过Selenium获取元素属性 2 #将定位赋值给el 3 el = driver.find_element_by_xpath('//*[@id="ai-topsear ...
分类:
Web程序 时间:
2021-05-24 13:15:21
阅读次数:
0
补题链接:Here 算法涉及:DP + 离散化 \(l\) 的范围太大,无法作为数组下标,所以先离散化,再DP。两点间的距离d大于t时,一定可以由 \(d\ \%\ t\) 跳过来,所以最多只需要t+d%t种距离的状态就可以表示这两个石子之间的任意距离关系。这样就把题目中的 \(10^9\) 压缩成 ...
分类:
其他好文 时间:
2021-05-24 12:38:52
阅读次数:
0