`
yl.fighter
  • 浏览: 258574 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
转载自: http://hi.baidu.com/%D0%A1%C3%D7%B7%C9%C3%A8/blog/item/b26f73f05ff2e3baa50f52e6.html 出现该问题,多是socket 的配置问题, 一种可能是 mysql 的配置文件启用了 bind-address = 127.0.0.1  可以去掉绑定,重启mysqld /etc/init.d/mysqld restart 或者把phpmyadmin 的config.inc.php 参数 $cfg['Servers'][$i]['host'] = 'localhost'; 由localhost 改为 127.0.0.1 ...
$body = stripslashes($response->body); $body = json_decode($body, true);
转自: http://hi.baidu.com/tean/blog/item/8631e824d753b41a4c088d83.html IE6下对display:inline-block;支持的不是很好。网上有资料说:修改inline元素的display属性为inline-block后,所有的浏览器都是支持的。修改block元素的display属性为inline-block后,IE6 ...
见附件
众所周知IE6不支持position:fixed,这个bug与IE6的双倍margin和不支持PNG透明等bug一样臭名昭著。前些天我做自己的博客模板的时候,遇到了这个问题。当时就简单的无视了IE6——尽管有几个使用IE6的朋友,一起BS我……但是对于大项目或商业网站,如果有用到这个属性的时候,是不可能直接无视的。 你是如何让position:fixed在IE6中工作的? 本文所使用的技巧是用了一条Internet Explorer的CSS表达式(expression)。你不可以直接使用该表达式,因为它可能会因为缓存而不更新。解决这一点的最简单的方式是使用eval包裹你的语句。 如何解决“振动” ...
DIV添加滚动条 .singer_detail {overflow: auto; height:240px;} 英文字体 font: small/normal Arial,sans-serif; li 在IE6和IE7下 下边距过宽, 解决方案: li:{float:left;} css的li列表,有个border-bottom,但是最后一条想不要底边框 li{border-top:1px solid #000;} li:first-child{border-top:none;} IE6 对filter的兼容性有问题. 尽量少用, 或在IE6中屏蔽filter {filter:no ...
index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/htm ...
在父窗口中, 如此声明方法: // 图片上传完成后, 子窗口掉用该方法进行, 修改父窗口的页面元素 // 该方法必须赋给变量. <script type="text/javascript"> var callback = function callback(data){ $("#app_icon")[0].src = "<?php echo Yii::app()->request->baseUrl; ?>/" + data; $('#App_icon').val(data); }; </s ...
IE6不支持png的图片,DD_belatedPNG这个js脚本可以使png图片或背景透明,http://www.dillerdesign.com/experiment/DD_belatedPNG/ 。但在使用过程中发现一个问题,当页面嵌在iframe里面时,显示的是空白,什么都看不到,问题出现在下面这个地方: if(a.currentStyle.position=="static"){     a.style.position="relative"; } 这里的a元素没有排除HTML节点,把HTML的position也设为relative了,改为下 ...
转载自: http://www.cnblogs.com/lgzslf/archive/2009/03/02/1401498.html 第一种: <script language="javascript" type="text/javascript"> window.location.href="a.asp?backurl="+window.location.href;  </script> 第二种: <script language="javascript"> alert(& ...
<html> <head> <script type="text/javascript"> function detectBrowser() { var browser=navigator.appName var b_version=navigator.appVersion var version=parseFloat(b_version) if ((browser=="Netscape"||browser=="Microsoft Internet Explorer") & ...
转自: http://hi.baidu.com/zhifeng_mo/blog/item/097e254988784dea82025ca1.html 只要在Flash对象加入页面时生成的HTML代码中加入以下参数就可以让Div浮动层从Flash下露出来了: <param name="wmode" value="transparent" /> 另外,放狗搜了一下,发现另外一个更专业的参数: <param name="wmode" value="opaque" /> transparent是负责透 ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><title>同时支持iexplorer和firefox的javascript复制拷贝剪贴板方法</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script> //copy信息到剪贴板 ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset ...
1. 默认绑定: $("#music_"+ json.music[i].id).one('click' ,function(){cancelCommend(this);}); 2. 动态替换: $("#music_commend_"+musicId).unbind("click"); $("#music_commend_"+musicId).one('click', function(){recommend(this);});
Global site tag (gtag.js) - Google Analytics