link

Jquery(4)

时光怂恿深爱的人放手 提交于 2019-12-31 23:30:43
1,属性过滤器 $("input[name=abc]:控件的属性值") //获取所有name="abc" 的checkbox $("div[title!=abc]") //获取所有title不等于abc的div $(function () { $("#select").click(function () { var ckbs = $("input[name=2]:checked");});//name为2 的input控件并且属性为checked的控件集合 ckbs.each(function () { alert($(this).val()); }); }); 2, 表单选择器 $(":input") 以这种方式能够获取例如<textarea>等标签属性 3,属性选择器 $("#x1 input:first").attr("value", "武昌"); 4, 追加内容 var link = $("<a href='http://www.baidu.com'>百度</a>"); $("#x1").append(link); //追加子元素在末尾 $("#x1").prepend(link);//追加子元素在开始 $("#x1").after(link);//追加元素在后兄弟节点 $("#x1").before(link);//追加元素在前兄弟节点 5, 动态创建Dom节点 $

C语言算法与数据结构——hashmap(板子)

巧了我就是萌 提交于 2019-12-30 02:56:09
# include <stdio.h> # include <stdlib.h> # include <string.h> typedef struct Node * Link ; struct Node { char data [ 15 ] ; Link next ; int count ; } ; typedef struct Table * hashtable ; struct Table { int size ; //链地址法 Link heads ; } ; hashtable creat ( int s ) { hashtable h = ( hashtable ) malloc ( ( sizeof ( struct Table ) ) ) ; h -> size = s ; h -> heads = ( Link ) malloc ( h -> size * sizeof ( struct Node ) ) ; int i ; //初始化表头结点 for ( i = 0 ; i < s ; i ++ ) { h -> heads [ i ] . data [ 0 ] = '\0' ; h -> heads [ i ] . next = NULL ; h -> heads [ i ] . count = 0 ; } return h ; } int hash (

urdf

拟墨画扇 提交于 2019-12-18 21:38:14
< ? xml version = "1.0" ? > < robot name = "linorobot" > < link name = "base_link" > < visual > < geometry > < box size = "0.21 0.16 0.01" / > < / geometry > < origin rpy = "0 0 0" xyz = "0.0 0.00 0.065" / > < material name = "blue" > < color rgba = "0 0 .8 1" / > < / material > < / visual > < / link > < link name = "perception_deck" > < visual > < geometry > < box size = "0.11 0.16 0.01" / > < / geometry > < origin rpy = "0 0 0" xyz = "0.057 0 0.1695" / > < material name = "blue" > < color rgba = "0 0 .8 1" / > < / material > < / visual > < / link > < link name = "wheel_left" > < visual > <

docker link使用示例

好久不见. 提交于 2019-12-06 20:53:06
创建dockerfile,本文将dockerfile命名为Dockerfile_memcached(文件名可随意定义): # Memcached # # VERSION 2.2 FROM ubuntu:12.04 MAINTAINER Marker.King <majk@vip.qq.com> # make sure the package repository is up to date RUN echo "deb http://mirrors.aliyun.com/ubuntu precise main universe" > /etc/apt/sources.list RUN apt-get update # install memcached RUN apt-get install -y memcached # Launch memcached when launching the container ENTRYPOINT ["memcached"] # run memcached as the daemon user USER daemon # expose memcached port EXPOSE 11211 根据dockerfile构建镜像: $ docker build -t memecached - < Dockerfile_memcached

在 Webstorm 中调试 Vue 项目

橙三吉。 提交于 2019-12-06 12:34:50
目录 Markdown For Typora Overview Block Elements Paragraph and line breaks Headers Blockquotes Lists Task List (Fenced) Code Blocks Math Blocks Tables Footnotes Horizontal Rules YAML Front Matter Table of Contents (TOC) Span Elements Links URLs Images Emphasis Strong Code Strikethrough Underlines Emoji 😄 Inline Math Subscript Superscript Highlight HTML Embed Contents Video Other HTML Support Markdown For Typora Overview Markdown is created by Daring Fireball ; the original guideline is here . Its syntax, however, varies between different parsers or editors. Typora is using GitHub Flavored

Vue == 导出excel

☆樱花仙子☆ 提交于 2019-12-05 20:35:14
<el-form-item> <el-button @click="exportHandle()" type="success">导出</el-button> </el-form-item> <script>import axios from 'axios' export default { methods:{ exportHandle() { axios({ headers: { 'Content-Type':'application/json', token: Cookies.get('tokensp') }, responseType: 'blob', // 一定要写 method: 'get', url:`${window.SITE_CONFIG['forumURL']}/productequipment/pmequipment/exportBackgroundEquipments`, params: { "json": { token: Cookies.get("token"), customerName:this.dataForm.customerName, businessOfficeId:this.dataForm.officeId, createTimeStart:'', createTimeEnd:'' } } }) .then(res => { let

vue SPA设计 history hash

房东的猫 提交于 2019-12-04 11:50:45
<body> <h3>Histort api</h3> <a class="api a">a,html</a> <a class="api b">b,html</a> <script> //注册路由 document.querySelectorAll('.api').forEach(item => { item.addEventListener('click', (e) => { e.preventDefault(); let link = item.textContent; window.history.pushState({name: 'api'},link,link) }, false) }); //监听路由 window.addEventListener('popstate', (e) => { console.log({ location: location.href, state: e.state }); }, false) </script> <p>------------------</p> <h3>Hash</h3> <a class="hash a">#a.html</a> <a class="hash b">#b.html</a> <script> //注册路由 document.querySelectorAll('.hash').forEach(item =

link方式安装eclipse插件

折月煮酒 提交于 2019-12-04 07:16:49
一、link方式安装eclipse插件(以hibernatetools插件为例子) (1)插件包解压缩后得到两个文件夹,features和plugins,剪切到 eclipse\MyPlugins\Hibernatetools\,当然,eclipse下是没有MyPlugins\Hibernatetools这个目录的,需要自己新建,当然你也可以自己随意命名,不过下一步中要使用到该目录,故最好目录名不要有中文,且不要有空格。 (2)在eclipse目录新建目录links (如果已经存在就不用新建),在该目录内新建文件hibernatetools.link,内容为:path=D:/Program Files/eclipse/MyPlugins/Hibernatetools 我这里使用的是绝对路径,大家也可以使用相对路径。 (3)重新启动eclipse,在 file --》new --》Other ,看到如下hibernate配置项就是已经安装成功 来源: oschina 链接: https://my.oschina.net/u/116090/blog/118875

MySQL:Communications link failure问题

。_饼干妹妹 提交于 2019-12-04 05:09:48
项目在访问mysql数据库时,常会出现Communications link failure错误,具体貌似是一个空闲连接超过数据库设置的"wait_timeout",MySQL会将该个连接out掉,而mysql连接池还认为该连接是有效的(MySQL的wait_timeout设置的参数跟连接池设置的超时时间不一致,wait_timeout > 连接池所设置的时间),因此错误就出现了 网上看了一下各种方法,觉得比较靠谱的解决方法 第一 :在连接数据库的url上,添加参数 &autoReconnect=true&failOverReadOnly=false 第二: 修改my.cnf: (未找到my.cnf,直接改的my.ini文件) [ mysql d] wait_timeout=31536000 interactive_timeout=31536000 问题不知是否已经解决,大家还有别的其它的方法么? 还有一个问题,如上所示的问题出现原因,为什么感觉这个问题出现并没有什么固定的周期,而感觉是随机出现。并且请教大家的另一个问题是mysql是如何分配连接的,不同的连接之间如何区别。每一次连接都会分配一个连接么? 来源: oschina 链接: https://my.oschina.net/u/1046280/blog/414227