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. 发现这个网站,值得推荐给所有的程序员看一下。 程序员的自我修养:网站链接如下: https://leohxj.gitbooks.io/a-programmer-prepares/content/ 文章简洁明了,列举了程序员必备的基础知识,已经作者收集的很多不错的网站链接。 这里列出该书(网站)的目录链接以供快速访问。 1. 程序员基础知识 1.1. 字符编码 1.2. 技术名词 1.3. 语义 ...

    阅读全文
  3. 如何排查Oracle SOA Suite以及Oracle BPM Suite的疑难杂症请参考官方文档: https://docs.oracle.com/cd/E29542_01/admin.1111/e10226/appx_trouble.htm#SOAAG3705 how to troubleshoot issues you can encounter when using Oracle SOA Suite and Oracle BPM Suite, including loggi ...

    阅读全文
  4. 学习media query可以参考官方网址: https://www.w3.org/TR/css3-mediaqueries/ 今天运到一个问题,在使用chrome调试media query效果时,使用调试窗口来调整页面大小,效果如期望的展现。但是如果直接调整浏览器大小,部分大小时候做到了自适应,但是当窗口resize到一定大小后,并没有发生变化。不知道是不是浏览器的bug. 代码如下: @media screen and (max-width: 450px) ...

    阅读全文
  5. 找出下面的javascript中值不为false的表达式: false NaN 0 -0 Boolean(5>6) null undefined "" 5/"test" 5*"Ten" 5+"-5" 5-"5" -15 +0 ...

    阅读全文
  6. 推荐阅读 http://dmitrysoshnikov.com/ecmascript/javascript-the-core/  stockoverflow的图解: 说明: Object.__proto__指向Function.prototype Function.__proto__指向Function.prototype Cat.__proto__指向Function.prototype mycat.__proto__指向Cat.prot ...

    阅读全文
  7. 微信欧萌图2016-06-28
    42550
  8. 有这样的需求,在导入Oracle数据备份文件时,不希望导入某些表(例如,不希望导入一些history table。这些表这是一些类似于log的记录)。可以使用exclude参数来实现。 impdp <other_parameters> SCHEMAS=scottEXCLUDE=TABLE:"IN ('EMP','DEPT')"  ...

    阅读全文
4142