- 浏览: 76068 次
- 性别:
- 来自: 杭州
最新评论
-
海天片语:
fncj 写道学习了 希望能帮到你
linux之命令 nc -
fncj:
学习了
linux之命令 nc
文章列表
1、检测Internet Explorer版本
当涉及到CSS设计时,对开发者和设计者而言Internet Explorer一直是个问题。尽管IE6的黑暗时代已经过去,IE也越来越不流行,它始终是一个能够容易检测的好东西。当然了,下面的代码也能用于检测 ...
::-webkit-scrollbar { width: 0 !important }
.id {
margin: 0 auto;
overflow: auto;
}
/quote]
1) 创建一个新文件 /etc/yum.repos.d/city-fan.repo
2) 复制下面的到上面文件中:
[CityFan]
name=City Fan Repo
baseurl=http://www.city-fan.org/ftp/contrib/yum-repo/rhel5/x86_64/
enabled=1
gpgcheck=0
3) 操作:
yum clean all
yum install curl
4)
service nginx restart
service php-fpm restart
And it ...
<script>
seajs.config({
base: 'http://wanghj',
alias: {
'$': 'jquery/1.11.2/jquery-1.11.2.min.js',
'jquery': 'jquery/1.11.2/jquery-1.11.2.min.js',
'bootstrap': 'bootstrap/3.3.4/js/bootstrap.min.js',
'formvalidation ...
html5 实现输入框实时搜索
- 博客分类:
- html5
function searchText(){
var content ="";
var inputVal=$('#siteInput').val();
var siteNum = {'张三':"桌1", '李四':"桌2"};
var found = false;
for( var key in siteNum){
if(key == inputV ...
HTML5 禁止表单提交
- 博客分类:
- html5
$("form").submit(function(){
event.preventDefault();
});
[code="java"
授权法:
例如,你想user使用password从任何主机连接到mysql服务器的话。
GRANT ALL PRIVILEGES ON *.* TO 'user'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
如果你想允许用户user从ip为192.168.1.8的主机连接到mysql服务器,并使用password作为密码
GRANT ALL PRIVILEGES ON *.* TO 'user'@'192.168.1.8' IDENTIFIED BY ...
第一部分:安装Apache2.4.16
1.下载回来的是解压文件,解压好放到要安装的位置。(以D:\Acpache24为例)
2.打开Apache24\conf下httpd.conf 文件,用记事本打开即可。
(1)把ServerRoot "c:/Apache24"改为“D:/Apache24”。
(2) 有些安装迅雷的要把Listen 80 改为 Listen 8080
3.启动Apache。
开始 --- 运行,输入cmd,打开命令提示符。接着输入d:回车cd Apache24\bin回车
httpd.exe -k inst ...
<select id="HostAccount" name="" onchange="HostClient("ORACLE")" style="margin-right: 12px; width: 145px; color: rgb(0, 0, 0);">
<option value="null" style="color:#999" acctype="0">用户填写</option>
&l ...
var fso, s=filespec; // filespec="C:/path/myfile.txt"
fso=new ActiveXObject("Scripting.FileSystemObject"); if(fso.FileExists(filespec))
s+=" 文件存在.";
else
s+=" 文件不存在.";
alert(s);
<?php
$book = array(array('Elmer Gantry', 'Sinclair Lewis', 1927),
array('The Scarlatti Inheritance', 'Robert Ludlum', '1971'),
array('The Parsifal Mosaic', 'William Styron', '1979'));
$i = 0;
foreach($book as $bookline){
$var[$i] = pack('A25A14A4', $boo ...
<?php
function lookandsay($str){
$r = '';
$m = $str[0];
$n = 1;
for($i=1; $i<strlen($str); $i++){
if($str[$i] == $m){//如果这个字符与上个字符相同则数目加1
$n++;
}else{
$r .= $n.$m;//反之, ...
如果这个字符串中没有找到相应的子字符串 就返回false
如果这个子字符串位于字符串的开始处 就会返回0
为了区分 0 和 false 就必须使用等同操作符 === 或者 !==
function my_scandir($dir)
{
$files=array();
if(is_dir($dir))
{
if($handle=opendir($dir))
{
while(($file=readdir($handle))!==false)
{
if($file!=”.” && $file!=”..”)
{
if(is_dir($dir.”/”.$file))
{
$files[$file]=my_scandir($dir.”/”.$file);
...
js:
if (document.getElementById("test1-header")){
$("#test1-header").click();
}
jquery:
if($('#container').length){
$('#log').append('#container存在页面中'); //使用$('#container').length来判断id="container"的元素是否存在,存在则>
}
判断页面元素是否可见
相关代码:
if($('# ...