首页 > 2018年11月16日 > 全部分享
解决启用 codemirror后,jquery获取不到textarea 的值
例子<textareaid="config"name="config"class="form-control"></textarea>window.editor_two=CodeMirror.fromTextArea(document.getElementById("config"),{lineNumbers:true,matchBrackets:true,styleAct
分类:Web开发   时间:2018-11-16 18:19:44    收藏:0  评论:0  赞:0  阅读:297
CentOS 6.5忘记root密码,怎么办?
CentOS 6.5忘记密码,怎么办?
分类:其他   时间:2018-11-16 18:19:11    收藏:0  评论:0  赞:0  阅读:182
Linux find命令
find命令在目录结构中搜索文件,并执行指定的操作。命令功能:在目录结构中搜索文件,并执行指定的操作。语法:find路径-选项参数findpathname-options[-print-exec-ok...]可以通俗理解为:find[查找路径]寻找条件操作。选项选项详细说明举例-name匹配名称-iname此参数的效果和指定“-name”参数类似,但忽略字符大小写的差别;-ilname此参数的效果
分类:系统服务   时间:2018-11-16 18:18:45    收藏:0  评论:0  赞:0  阅读:184
Linux下编译PHP常见错误及解决方法
1、configure: error: xml2-config not found. Please check your libxml2 installation.yum install libxml2-devel -y openssl-devel bzip2-devel curl-devel 2、 ...
分类:Web开发   时间:2018-11-16 18:17:37    收藏:0  评论:0  赞:0  阅读:419
#leetcode-algorithms-4 Median of Two Sorted Arrays
leetcode algorithms 4 Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two ...
分类:其他   时间:2018-11-16 18:17:20    收藏:0  评论:0  赞:0  阅读:128
ethereum(以太坊)(十)--字节数组
pragma solidity ^0.4.0; contract byte1{ /* 固定大小字节数组(Fixed-size byte arrays) 固定大小字节数组可以通过bytes1,bytes2...bytes32声明,byte=byte1 bytes1 只能存储1个字节,也就是二进制的8位... ...
分类:编程语言   时间:2018-11-16 18:17:04    收藏:0  评论:0  赞:0  阅读:294
原生javaScript导出表格数据
Document 导出csv 下载模板 ...
分类:编程语言   时间:2018-11-16 18:16:44    收藏:0  评论:0  赞:0  阅读:170
SEGGER RTT STOP/SLEEP 模式下使用
1、问题详述, M3/M4内核在sleep 或者 STOP模式 下,内核是不工作的,因此需要 以下 几步操作 第一步: 开启 低功耗模式下,debug 的连接 DBGMCU_Config(DBGMCU_SLEEP, ENABLE); DBGMCU_Config(DBGMCU_STOP, ENABLE ...
分类:其他   时间:2018-11-16 18:16:10    收藏:0  评论:0  赞:0  阅读:194
关闭指定servcie日志
当程序作为servcie运行时,且系统启用了rsyslog, 程序中的printf会输出到系统日志文件,一般是/var/log/messages 可以通过配置/etc/rsyslog/conf禁止指定进程记录日志 如禁止名为abc的进程输出到日志 :programname, isequal, "ab ...
分类:其他   时间:2018-11-16 18:15:53    收藏:0  评论:0  赞:0  阅读:164
linux下springboot项目通过jetty发布war包应用
Linux下jetty发布jar包 1.通过官网下载jetty点击下载https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/ 2.下载后解压,进入%JETTY_HOME%,编辑start.ini修改默认端口号。 3.将 ...
分类:编程语言   时间:2018-11-16 18:15:38    收藏:0  评论:0  赞:0  阅读:523
php:关于微信一直无法通过php token验证, ehcho echo $echoStr; 总是提示不对的问题.
用微信官方提供的demo验证token 老是失败, 但是我自己用IIS 加 .net , token就能登录成功, 后来debug, 找各种问题,总是不能解决. 最后还是再搜了搜. 找到这么一篇解决方案.原文在这里: https://www.cnblogs.com/donlyn/p/5675483. ...
分类:微信   时间:2018-11-16 18:15:19    收藏:0  评论:0  赞:0  阅读:173
商城倒计时JS怎么做
商城倒计时JS怎么做 ...
分类:Web开发   时间:2018-11-16 18:14:58    收藏:0  评论:0  赞:0  阅读:196
怎么在Linux上抓包分析
怎么在Linux上抓包分析 1、在Linux上抓包 例如在Ubuntu上,用命令抓包, tcpdump tcp -i any -s0 -w desk.cap 用 sz desk.cap 把数据包导入本地Windows 2、在windows上用wireshark分析 用wireshark打开desk. ...
分类:系统服务   时间:2018-11-16 18:14:26    收藏:0  评论:0  赞:0  阅读:176
Linux shell中自动完成登录
在写shell脚本时,需要登录到不同的服务器上执行相关命令,在未建立信任之前如何批量操作。 1、ssh 首次登录服务器时会提示RSA key fingerprint输入yes/no,可以通过下面的方法实现. ssh test@192.168.1.3 -o "StrictHostKeyChecking ...
分类:系统服务   时间:2018-11-16 18:14:06    收藏:0  评论:0  赞:0  阅读:166
记一次 Spring 事务配置踩坑记
记一次 Spring 事务配置踩坑记 问题描述:(SpringBoot + MyBatisPlus) 业务逻辑伪代码如下。理论上,插入数据 t1 后,xxService.getXxx() 方法的查询条件会不满足,会查询不到数据。结果事与愿违,后一次的查询,居然查到了数据。 分析过程: 抛弃业务逻辑, ...
分类:编程语言   时间:2018-11-16 18:13:48    收藏:0  评论:0  赞:0  阅读:186
tp 下载
public function download() { //文件名 $filename=input('filename'); // $file_dir = $_SERVER["DOCUMENT_ROOT"] . DS . 'uploads' . "/" . $input_data['url']; ... ...
分类:其他   时间:2018-11-16 18:13:30    收藏:0  评论:0  赞:0  阅读:172
利用EasySQLMAIL实现自动数据提取和邮件发送功能 (1)
转自:http://blog.sina.com.cn/s/blog_1549483b70102wioy.html 最近几个月每天都在发通报。过程很繁琐,动作很机械,整个人就是一部机器,执行SQL,填Excel,发邮件。所以想把日报自动化了。最后找到一个叫EasySQLMAIL的软件,试了一下,很简单 ...
分类:数据库技术   时间:2018-11-16 18:12:59    收藏:0  评论:0  赞:0  阅读:284
gitlab安装
参考官网安装 https://about.gitlab.com/install/#centos-6 1.安装依赖sudo yum install -y curl policycoreutils-python openssh-server croniesudo lokkit -s http -s ss ...
分类:其他   时间:2018-11-16 18:12:31    收藏:0  评论:0  赞:0  阅读:180
SpringCloud----服务注册中心Eureka
一 Eureka服务治理体系1.1 服务治理 服务治理是微服务架构中最为核心和基础的模块,它主要用来实现各个微服务实例的自动化注册和发现。 Spring Cloud Eureka是Spring Cloud Netflix微服务套件中的一部分,它基于Netflix Eureka做了二次封装。主要负责完 ...
分类:编程语言   时间:2018-11-16 18:12:14    收藏:0  评论:0  赞:0  阅读:143
不错的网站模块地址
1、儿童幼儿园托管中心响应式模板 http://demo.cssmoban.com/cssthemes5/cpts_1435_cjq/about.html ...
分类:Web开发   时间:2018-11-16 18:11:52    收藏:0  评论:0  赞:0  阅读:176
1040条   上一页 1 ... 16 17 18 19 20 ... 52 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!