hdu 2057 A + B Again Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6546 Accepted Submission(s hdu2057 11年前 2829 浏览
css自动渐变 自动渐变样式 css文件如下: input[type="text"]{ animation-duration: 3s; animation-iteration-count: infinite; animation 11年前 2820 浏览
Wrong permissions Wrong permissions on configuration file, should not be world writable! 运行phpMyAdmin时,遇到以上这个错误表示: 你的权限不对,phpMyAdmin只能是755的权限,不能是777的权限,改过就好了; php、phpmyadmin 11年前 2806 浏览
mysql 表数量 mysql统计当前数据库的表数量:SELECT count(TABLE_NAME) FROM information_schema.TABLES WHERE TABLE_SCHEMA='test_db'; 10年前 2769 浏览
HTML详解 1. 详解HTML 标签和属性 在HTML中,通常标签都是由开始标签和结束标签组成的,开始标签用“”表示,结束标签用“”表示。 元素指的是包含标签在内的整体,除去标签的部分叫做内容。 属性要在开始标签中指定,用来表示该标签的性质和特性。通常都是以“属性名 11年前 2723 浏览
js回车监听 // 回车监听事件 $('#bm-sel-modal .bm_name').bind('keypress',function(event){ if(event.keyCode == "13"){ a 10年前 2719 浏览
apache 禁止浏览目录 当我们不想让别人直接访问某些目录时:#Options Indexes FollowSymLinks 改成Options -Indexes FollowSymLinks <Direc 10年前 2707 浏览
mysql 新建用户 mysql创建新用户的语句:mysql> insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234")); //刷 10年前 2678 浏览