// 打印所有 function onAllButtonClick() { $("#print div div:contains('项目号:')").html('项目号:' + F.ui.lbItem_no.getText()); $("#print div div:contains('内部合同号: ...
分类:
Web程序 时间:
2020-06-20 18:52:53
阅读次数:
386
无限极分类实现 数据准备 data=[ {"cat_id":1,"name":"安徽","parent_id":0}, {"cat_id":2,"name":"福建","parent_id":0}, {"cat_id":3,"name":"阜阳","parent_id":1}, {"cat_id": ...
分类:
其他好文 时间:
2020-06-20 16:14:58
阅读次数:
90
/** * @author:xc * @desc: 特殊字符校验 除了下划线 */ containSpecial(str) { var containSpecial = RegExp( /[(\ )(\~)(\!)(\@)(\#)(\$)(\%)(\^)(\&)(\*)(\()(\))(\-)(\+ ...
分类:
Web程序 时间:
2020-06-20 14:22:22
阅读次数:
233
CSS总结 CSS(Cascadig style sheet):层叠样式表 选择器{属性1:值1;属性2:值2;……} CSS代码的引入方式 1.直接写在head标签里面 <head> <style> .c1{background-color:red;text-align:center;} </st ...
分类:
Web程序 时间:
2020-06-20 00:53:33
阅读次数:
60
Constructs a cookie with a specified name and value.The name must conform to RFC 2109. That means it can contain only ASCII alphanumeric characters an ...
分类:
其他好文 时间:
2020-06-19 19:15:22
阅读次数:
75
@(阿里云【名师课堂】Java面向对象开发68 ~ 70、73:接口的定义和使用) 通过《阿里云【名师课堂】Java面向对象开发65 ~ 67:抽象类的定义和使用》的学习我们知道,抽象类虽然可以对子类的实现进行了约束,但是抽象类有一个缺点:单继承局限。 如果要在约束子类的实现要求的同时避免单继承局限 ...
分类:
编程语言 时间:
2020-06-19 12:14:21
阅读次数:
45
blog:https://www.cnblogs.com/Rohn/ 本文只总结一些常用的用法,更详细的说明见man dirname和 direname --help。 dirname命令 dirname命令用于获取给定路径的路径部分。 语法格式 dirname [OPTION] NAME... S ...
分类:
系统相关 时间:
2020-06-18 19:59:12
阅读次数:
75
启动步骤解析 1、解析配置,包括job.json、core.json、plugin.json三个配置 2、设置jobId到configuration当中 3、启动Engine,通过Engine.start()进入启动程序 4、设置RUNTIME_MODE奥configuration当中 5、通过Jo ...
分类:
其他好文 时间:
2020-06-18 19:20:53
阅读次数:
195
The Matplotlib library is designed to work well with many different environments and platforms. As such, the library does not only contain routines fo ...
分类:
其他好文 时间:
2020-06-18 12:42:01
阅读次数:
56
python函数之进阶 1:函数嵌套 一:什么是函数嵌套 在一个函数内又定义了另外一个函数 二:函数定义 def foo(): def bar() print('from bar') bar() foo() # 这个是通过foo函数调用里面的bar函数 def foo(): def f2(): pr ...
分类:
编程语言 时间:
2020-06-17 23:28:25
阅读次数:
79