最近写个模糊查询的自动提示的功能,可是VS自带的文本框能记住以前填写过的东西,很是烦人,最后找到解决办法html控件 :将input元素的autocomplete属性设置为off可以关闭自动提示 如果所有表单元素都不想使用自动提示功能,只需在表单form上设置autocomplete=off。ser...
分类:
其他好文 时间:
2014-10-09 20:35:17
阅读次数:
180
jquery常用的事件:
/*
on
off
hover
blur
change
click
dblclick
focus
keydown
keyup
keypress
mousedown
resize
scroll
select
sub...
分类:
Web程序 时间:
2014-10-07 11:27:53
阅读次数:
272
IP首部内有三个字段实现分片和重装:标识字段(ip_id)、标志字段(ip_off的3个高位比特)和偏移字段(ip_off的13个低位比特)。标志字段由3个1bit标志组成。比特0是保留的必须为0,;比特1是“不分片”(DF)标志;比特2是“很多其它分片”(MF)标志。Net/3中,标志和偏移字段结...
分类:
其他好文 时间:
2014-10-06 19:01:10
阅读次数:
270
@echo off if "%1" == "h" goto begin mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit :begin//前面的代码是后面的代码后台运行的关键@echo ...
分类:
其他好文 时间:
2014-10-06 17:26:50
阅读次数:
289
前提: 关掉防火墙 service iptables stop 或chkconfig iptables off(永久关闭防火墙) 关闭SELinux setenforce 0 或vi /etc/sysconfig/selinux把 SELINUX=enforcing 修改为SELINUX= disa...
分类:
其他好文 时间:
2014-10-05 00:58:37
阅读次数:
245
wget很厉害,你如果想把某个网站上的一系列的文档,通常是api文档扒下来可用下列命令:wget -e robots=off -w 1 -x -np -p -m -k -t 1 -X/upload/ http://网址为了让这个命令行的各选项意义更加明确,它还可以写成:wget --execute ...
分类:
Web程序 时间:
2014-10-04 23:54:27
阅读次数:
334
hdu4727:http://acm.hdu.edu.cn/showproblem.php?pid=4727题意:给你一个序列,每个数比前面一个数大一。如果不是大一,则输出这个位子,如果都是大一,则输出1.题解:水题。 1 #include 2 #include 3 #include 4 #incl...
分类:
其他好文 时间:
2014-10-04 19:07:37
阅读次数:
177
log_db_1=`sqlplus -S dsg/dsg#123DSG << EOFset heading off feedback off pagesize 0 verify off echo off numwidth 5;select sequence# from v\\\$log where ...
分类:
数据库 时间:
2014-10-01 17:42:21
阅读次数:
203
Django默认没有只读权限,只能自己实现。查看了大量的资料,总算搞定了。修改admin.pyfromdjango.contrib.admin.utilimportflatten_fieldsets#引入类classGconfAdmin(admin.ModelAdmin):list_display=(‘mailserver‘,‘mailsender‘,‘mail_on_off‘,‘sms_on_off‘)#搜索字段search_f..
分类:
其他好文 时间:
2014-10-01 01:26:40
阅读次数:
232
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...
分类:
编程语言 时间:
2014-09-30 07:48:12
阅读次数:
193