码迷,mamicode.com
首页 >  
搜索关键字:INPUT    ( 33491个结果
git 换行符
linux 系统上配置 .gitconfig [core] autocrlf = input safecrlf = warn 配置为提交时转为 lf,下拉时不转换。如果文件时混合换行符时,进行警告。 参考:https://www.jianshu.com/p/6ef90ce18ba2 https:// ...
分类:其他好文   时间:2020-12-19 11:42:15    阅读次数:1
vue 自定义指令
自定义指令 当指令不满足需求时,可以自定义指令,语法如下: Vue.directive('focus',{ inserted: function(el){ //el表示指令所绑定的元素 el.focus() } }) 使用方法和其他指令一样 <input type="text" v-focus> 带 ...
分类:其他好文   时间:2020-12-18 13:03:56    阅读次数:3
什么是对象
什么是对象 面向对象& 面向过程 面向过程思想 步骤清晰简单,第一步做什么,第二步做什么... 面向过程适合处理一些较为简单的问题 例如:一个人从冰箱里拿吃的 第一步:起来 第二步: 打开冰箱 第三步:拿出东西 第四步:关上冰箱 面向对象思想 物以类聚,分类的思维模式,思考问题首相会解决问题需要哪些 ...
分类:其他好文   时间:2020-12-18 13:00:58    阅读次数:3
python模拟进程状态
参考:http://www.cnblogs.com/21207-iHome/p/6085334.html 代码:from transitions import Machine 定义一个自己的类 class Matter(object): pass model = Matter() 状态定义 stat ...
分类:编程语言   时间:2020-12-18 12:42:26    阅读次数:2
jQuery主要功能简析
获取元素 jQuery的基本设计思想和主要用法,就是选择某个网页元素,然后对其进行操作。 css选择器 $(document) 选择整个文档 $('#myId') 选择id为#id的网页元素 $('div.myClass') 选择class为myClass的选择器 $('input[name=min ...
分类:Web程序   时间:2020-12-18 12:36:50    阅读次数:2
sh脚本例子
#!/bin/bashecho "第一个参数为: $1";echo "参数个数为: $#";echo "表示执行脚本传入参数的列表 $*"; sh demo.sh 111 222 3331、$# 表示执行脚本传入参数的个数2、$* 表示执行脚本传入参数的列表(不包括$0)3、$$ 表示进程的id4、 ...
分类:其他好文   时间:2020-12-18 12:35:42    阅读次数:2
UI自动化测试常用操作函数(1)
class Utils: #对可输入的元素执行点击,清理和输入 @classmethod def send_input(cls,ele,value): ele.click() try: ele.clear() except: pass finally: ele.send_keys(value) # ...
分类:其他好文   时间:2020-12-17 13:04:31    阅读次数:5
0865. Smallest Subtree with all the Deepest Nodes (M)
Smallest Subtree with all the Deepest Nodes (M) 题目 Given the root of a binary tree, the depth of each node is the shortest distance to the root. Retur ...
分类:其他好文   时间:2020-12-17 12:55:47    阅读次数:3
layui switch监听事件
layui switch监听事件 LayUi使用switch开关,动态的去控制它是否被启用 layui中的switch开关,能够去显示当前的状态,是否是启用还是停用。 效果如下 前台代码 <script type="text/html" id="switchTpl"> <input id="chec ...
分类:其他好文   时间:2020-12-17 12:33:30    阅读次数:2
RNNCell使用
目录Recapinput dim, hidden dimSimpleRNNCellSingle layer RNN CellMulti-Layers RNNRNN Layer Recap input dim, hidden dim from tensorflow.keras import layer ...
分类:其他好文   时间:2020-12-17 12:24:16    阅读次数:2
33491条   上一页 1 ... 36 37 38 39 40 ... 3350 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!