1. clientHeight 与  offsetHeight的区别和理解。 clientHeight: =( height + padding Height) Returns the height of the visible area for an object, in pixels. The value contains the height with the padding, but it does not include the scrollBar, border ...

    阅读全文
  2. 淘宝SPM含义2014-11-19

    什么是SPM SPM是淘宝社区电商业务(xTao)为外部合作伙伴(外站)提供的一套跟踪引导成交效果数据的解决方案。   下面是一个跟踪点击到宝贝详情页的引导成交效果数据的SPM示例: http://detail.tmall.com/item.htm?id=3716461318&&spm=2014.123456789.1.2 其中spm=2014.123456789.1.2 便是下文所说的SPM编码   SPM编码:用来 ...

    阅读全文
  3. 为了对CKEDITOR编辑控件有更多的了解,简单抓取了其产生的页面中定义的CSS。主要想看看如何更好的对其更改样式,从而做到真正的WYSWYG。 抓取的这部分可以分为三大块: CKEDITOR可编辑区对应的CSS: .cke_editable{cursor:text} .cke_editable img,.cke_editable input,.cke_editable textarea{cursor:default} CKEDITOR命令菜单对应的CSS。 ...

    阅读全文
  4. http://www.w3schools.com/js/js_obj_regexp.asp  正则表达式是一种文本模式,包括普通字符(例如,a 到 z 之间的字母)和特殊字符(称为“元字符”)。模式描述在搜索文本时要匹配的一个或多个字符串。 正则表达式示例 /^\s*$/ 匹配空行。 /\d{2}-\d{5}/ 验证由两位数字、一个连字符再加 5 位数字组成的 ID 号。 /<\s*(\S+)(\s[^&g ...

    阅读全文
  5. 来自 让暴力破解去死 改端口+改root+密钥登录+DenyHosts http://www.ctyun.cn/bbs/forum.php?mod=viewthread&tid=1098 (出处: 天翼云-中国电信云计算分公司官方论坛)     之前在论坛里咨询了一下, 受到启发 找到了一些资料, 希望能帮到大家 原帖: http://www.ctyun.cn/bbs/forum.php?mod=viewthread&am ...

    阅读全文
  6. Mysql Server挂掉了,重启总是失败,异常提示: Starting MySQL.The server quit without updating PID file (/[FAILED]l/mysql/data/VM_1232.pid). 查看日志文件后发现有这么一段[ERROR]。 [ERROR]InnoDB: Cannot allocate memory for the buffer pool. 先不说这段ERROR,这段error只是说明了为什么mys ...

    阅读全文
  7. 1、一般JS冲突解决办法 a.最容易出现的就是js的命名冲突 ①、变量名冲突 变量有全局变量和局部变量当全局变量变量和局部变量名称一致时,就会js冲突,由于变量传递数值或地址不同就会产生JavaScript错误,甚至死循环。 ②、方法名冲突 函数中有很多方法,不同的js之间可能函数名一样,这就使得程序执行时不知道改调用那个方法或者哪个方法执行后的结果,最终导致程序加载失败。 ③、函数名冲突 一般是命名导致JS冲突。解决方法主要是查找在加载的js中是否 ...

    阅读全文
  8. 51500

    课程名称 考试内容 A1 数学 1)概率论(30%); 2)数理统计(20%); 3)随机过程(20%); 4)应用统计(20%); 5)随机微积分(10%)。 A2 金融数学 1)复利数学 ...

    阅读全文
  9. Installing the Certificates to the Keystore If you receive a message that says "Certificate already exists in system-wide CA keystore under alias <...> Do you still want to add it to your own keystore? [no]:", select Yes. If succes ...

    阅读全文
  10. skip-name-resolve skip-locking skip-innodb skip-bdb key_buffer = (1G内存推荐设置为256M,2G内存推荐设置为512M) wait_timeout = 3或者5 (2G内存推荐设置为5) max_connections = (如果访问量很大可以设置为512-1024,否则可以设置为384) memory_limit =     (程序最多允许使用内存量, 2G内存建议设置为128M) post ...

    阅读全文
  11. 1. 单个字符的处理 ~:切换光标所在位置的字符的大小写形式,大写转换为小写,小写转换为大写 3~:将光标位置开始的3个字母改变其大小写 2. 文本整体的处理 gu:切换为小写, gU:切换为大写 2.1 整篇文章 无须进入命令行模式,键入: ggguG:整篇文章转换为小写,gg:文件头,G:文件尾,gu:切换为小写 gggUG:整篇文章切换为大写,gg:文件头,G:文件尾,gU:切换为大写 2.2 只转化某个单词 guw、gue ...

    阅读全文
  12. 51330

    http://www.blogjava.net/landon/archive/2013/11/27/406896.html   ...

    阅读全文
  13. YUI 2.9 Samples2013-11-28

    Widget ImageCropper Control Examples: Simple Crop Interface Advanced Crop Interface Real Time Crop Feedback Connection Manager assisted image crop Skinning the ImageCropper     Layout Manager Exampl ...

    阅读全文
  14. 1、按 delete 键,实现 Windows 键盘上退格键的功能,也就是删除光标之前的一个字符(默认); 2、按 fn+delete 键,删除光标之后的一个字符; 3、按 option+delete 键,删除光标之前的一个单词(英文有效) 4、按 command+delete 键,删除光标之前整行内容; 5、选中文件后按 command+delete,删除掉该文件; ...

    阅读全文
  15. 版权声明:本文为木偶人shaon原创文章,转载请注明原文地址,非常感谢。 https://blog.csdn.net/wh211212/article/details/53750366 getopt 与 getopts 都是 Bash 中用来获取与分析命令行参数的工具,常用在 Shell 脚本中被用来分析脚本参数。 两者的比较 (1)getopts 是 Shell 内建命令,getopt 是一个独立外部工具 (2)getopts 使用语法简单 ...

    阅读全文
  16. Between the quotation marks of export PS1=” “, you can add the following lines to customize your Terminal prompt: \d – Current date \t – Current time \h – Host name \# – Command number \u – User ...

    阅读全文
  17. Todo: 2014-05-06
    50900

      Weblogic class reference configuration: by default, class in classpath is used. weblogic.xml prefer-web-inf-classes weblogic-application.xml prefer-application-packages   Performance tuning tools; jmap usage heapanayl ...

    阅读全文
  18. 问题: 一个SOA project中使用到了JMSAdapter. It works in unix envrionment. 然而部署在windows时发现有几个JMS Consumer Composite部署时没有问题,但是使用时或通过EM 去访问时,出现Malformed \uxxxx enconding错误,如下。 java.lang.IllegalArgumentException: Malformed \uxxxx encoding. at ...

    阅读全文
  19. 50790

    琪比小美屋 婴幼儿春秋装男女宝宝衣服婴儿套装新生儿0-1岁外出服     ...

    阅读全文
  20. var // The deferred used on DOM ready readyList, // A central reference to the root jQuery(document) rootjQuery, // Support: IE<10 // For `typeof xmlNode.method` instead of `xmlNode.method !== undefined` core_strundefined = ty ...

    阅读全文