如需要跟多资料请点击下方图片?(扫码加好友→备注66) Jquery事件 ready加载事件 ? ready()类似于 onLoad()事件 ? ready()可以写多个,按顺序执行 ? \((document).ready(function(){})等价于\)(function()) <!DOCT ...
分类:
Web程序 时间:
2020-07-04 20:41:55
阅读次数:
79
dealLink() { //处理a标签情况,1、跳转到别的站点 2、当前页面锚点 3、不是站点又不是锚点,处理成文本形式 let element = document.querySelectorAll('a') element.forEach((item, index) => { const hr ...
分类:
其他好文 时间:
2020-07-04 18:41:20
阅读次数:
156
var datas = [ { name: '张三', subject:'Javascript', score:100 }, { name: '李四', subject:'Javascript', score:98 }, { name: '王五', subject:'Javascript', sco ...
分类:
其他好文 时间:
2020-07-04 18:40:52
阅读次数:
48
1, var str="Hello world!" document.write(str.charAt(1)) e 2, ...
分类:
Web程序 时间:
2020-07-04 18:30:48
阅读次数:
72
<script type="text/javascript"> var json = '[{"title":"微笑","src":14},{"title":"撇嘴","src":2},{"title":"色","src":3},{"title":"发呆","src":4},{"title":&quo ...
分类:
Web程序 时间:
2020-07-04 13:47:37
阅读次数:
83
1 package com.kwm.referencemark.test; 2 3 import java.io.File; 4 import java.io.FileInputStream; 5 import java.io.FileOutputStream; 6 import java.io.O ...
分类:
编程语言 时间:
2020-07-03 15:35:09
阅读次数:
104
Controls Application (the variable not a type) Forms Beep SysUtils or Windows (different functions) CGID_EXPLORER ShlObj CN_BASE Controls CoInitialize ...
from docx import Document w=Document(r'F:\word练习\a.docx') t=\ [ ['姓名','性别','年龄'], ['张三','男',23], ['李四','女',45], ['王五','男',60] ] r=4;c=3 table=w.add_ta ...
分类:
其他好文 时间:
2020-07-03 12:51:53
阅读次数:
63
document.onkeydown = function (e) { e = window.event || e; var k = e.keyCode; //屏蔽ctrl+R,F5键,ctrl+F5键 F3键!验证 if ((e.ctrlKey == true && k == 82) || (k ...
分类:
Web程序 时间:
2020-07-03 12:40:33
阅读次数:
121
from docx import Document from docx.shared import Cm w=Document(r' ') w.tables[0].add_row() #给表格增加一行 w.tables[0].add_column(Cm(5)) #给表哥增加一列 print(len( ...
分类:
其他好文 时间:
2020-07-03 12:18:01
阅读次数:
91