**1.避免在document上直接进行频繁的DOM操作,如果确实需要可以采用off-document的方式进行,具体的方法包括但不完全包括以下几种:** (1). 先将元素从document中删除,完成修改后再把元素放回原来的位置 (2). 将...
分类:
其他好文 时间:
2015-02-14 11:08:39
阅读次数:
228
使用spool命令实行将sql*plus中的输出的结果复制到一个指定的文件中,或者把查询的结果
发送到打印机中,直接使用spool off命令为止。
spool命令的语法如下:
spool [file_name [create|replace|append] off|out]
其中file_name指定一个操作系统文件
create将创建一个指定的file_name文件
r...
分类:
数据库 时间:
2015-02-13 18:34:22
阅读次数:
261
执行Bat脚本@echo off sqlplus sys/welcome@orcl as sysdba @C:\Users\yangfan\Desktop\login.sqlecho 按任意键结束... pause>nul exit login.sql文件存储sql语句。create or re.....
分类:
数据库 时间:
2015-02-13 17:53:56
阅读次数:
241
使用SQLPlus的spool命令? 操作步骤? 1. 新建一个脚本文件,存放起来,如D:\spool.sql,具体代码如下? set echo off --在用start命令执行一个sql脚本时,是否显示脚本中正在执行的SQL语句
set feedback off --是...
分类:
数据库 时间:
2015-02-13 14:57:10
阅读次数:
187
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, …
1 is read off as “one 1” or 11.
11 is read off as “two 1s” or 21.
21 is re...
分类:
其他好文 时间:
2015-02-12 18:34:45
阅读次数:
154
hMailServer发送附件大小限制有以下几个地方:1、php配置 参考1.post_max_size = 10M 表单提交最大数据为10M.此项不是限制上传单个文件的大小,而是针对整个表单的提交数据进行限制的.2.file_uploads = On 是否允许上传文件,如果为OFF您将不能上传文件...
分类:
其他好文 时间:
2015-02-12 18:18:38
阅读次数:
187
(1)设置relaylog的清除方式(在每个slave节点上):
mysql-e‘setglobalrelay_log_purge=0‘注意:MHA在发生切换的过程中,从库的恢复过程中依赖于relaylog的相关信息,所以这里要将relaylog的自动清除设置为OFF,采用手动清除relaylog的方式。在默认情况下,从服务器上的中继..
分类:
数据库 时间:
2015-02-12 14:12:10
阅读次数:
324
Hi guys,I just want to share what I did today. I ordered an OBDII ELM327 scanner off EOBD2.FR to pair with my iPhone 5 and just got it this morning. O...
分类:
移动开发 时间:
2015-02-11 16:00:54
阅读次数:
158
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:
其他好文 时间:
2015-02-10 14:55:17
阅读次数:
155
JQuery从1.7+版本开始,提供了on()和off(),进行事件处理函数的绑定和取消。这2个API与JQuery最初提供的bind()和unbind()有很多相似的地方,也有一些不同之处。bind和unbind的详细介绍,可以参考这篇文章。
on()和bind()的函数签名如下:
bind(type, [data], fn)
on(type,[selector],[data],fn...
分类:
Web程序 时间:
2015-02-09 20:20:34
阅读次数:
165