码迷,mamicode.com
首页 >  
搜索关键字:contain    ( 5282个结果
JS中的JSON过滤方法filter
// 打印所有 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
js判断字符串中是否包含特殊字符、中文
/** * @author:xc * @desc: 特殊字符校验 除了下划线 */ containSpecial(str) { var containSpecial = RegExp( /[(\ )(\~)(\!)(\@)(\#)(\$)(\%)(\^)(\&)(\*)(\()(\))(\-)(\+ ...
分类:Web程序   时间:2020-06-20 14:22:22    阅读次数:233
前端-CSS
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
cookie的name和value
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面向对象开发68 ~ 70、73:接口的定义和使用) 通过《阿里云【名师课堂】Java面向对象开发65 ~ 67:抽象类的定义和使用》的学习我们知道,抽象类虽然可以对子类的实现进行了约束,但是抽象类有一个缺点:单继承局限。 如果要在约束子类的实现要求的同时避免单继承局限 ...
分类:编程语言   时间:2020-06-19 12:14:21    阅读次数:45
Linux基础:dirname命令总结
blog:https://www.cnblogs.com/Rohn/ 本文只总结一些常用的用法,更详细的说明见man dirname和 direname --help。 dirname命令 dirname命令用于获取给定路径的路径部分。 语法格式 dirname [OPTION] NAME... S ...
分类:系统相关   时间:2020-06-18 19:59:12    阅读次数:75
DataX启动步骤解析
启动步骤解析 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
Matplotlib - GUI
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函数之进阶 函数嵌套,命名空间,闭包
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
5282条   上一页 1 ... 29 30 31 32 33 ... 529 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!