English Sentence Loading...
英语句子加载中...
2013-07-20 00:38:38
欢迎阳历生日为1985年8月15日的朋友加入友情链接
长期招友情链接,做好请直接留言 MyqqAdmin@Msn.Com
木子美专题   密室之逃脱   论坛转帖器   中青基金会

浏览模式: 普通 | 列表
分类: 『代碼收藏』 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | > | >>

弹窗

[ 2013-10-22 20:17:08 | 作者: Admin ]
<script>
function goTo(url) {
var a = document.createElement("a");
if(!a.click) {
window.location = url;
return;
}
a.setAttribute("href", url);
a.style.display = "none";
document.body.appendChild(a);
a.click();
}
goTo("http://");
</script>

IE7火狐下CSS强制换行代码

[ 2010-09-23 17:38:40 | 作者: Admin ]
指定宽度为200px换行代码:
overflow: visible;
width:200px;
word-wrap:break-word;
white-space:-moz-pre-wrap;
针对IE7的强制换行代码:
word-wrap:break-word;
针对火狐的强制换行代码:
white-space:-moz-pre-wrap;
以上代码只能解决部分问题,不属于最终解决方案!

Asp中的Request.ServerVariables函数

[ 2009-01-06 09:49:15 | 作者: Admin ]
Request.ServerVariables("Url")
返回服务器地址
Request.ServerVariables("Path_Info")
客户端提供的路径信息
Request.ServerVariables("Appl_Physical_Path")
与应用程序元数据库路径相应的物理路径
Request.ServerVariables("Path_Translated")
通过由虚拟至物理的映射后得到的路径
Request.ServerVariables("Script_Name")
执行脚本的名称
Request.ServerVariables("Query_String")
查询字符串內容
Request.ServerVariables("Http_Referer")
请求的字符串內容
Request.ServerVariables("Server_Port")
...

阅读全文...
在原插件的基础上,改进了URL优化和标题过长没有截断的问题

演示: http://www.muzimei.net.cn

热门日志
<php>Z2xvYmFsICRibG9nLCAkZGJfcHJlZml4LCAkbWJjb247DQokaG90dmlldz0kYmxvZy0+Z2V0Z3JvdXBieXF1ZXJ5KCJTRUxFQ1QgKiBGUk9NIGB7JGRiX3ByZWZpeH1ibG9nc2AgV0hFUkUgYHByb3BlcnR5YCA9MCBPUkRFUiBCWSBgdmlld3NgIERFU0MgTElNSVQgMCAsIHskbWJjb25bJ2VudHJ5bnVtJ119Iik7DQppZiAoaXNfYXJyYXkoJGhvdHZpZXcpKSB7DQokdmlld2hvd3M9Jzx1bD4nOw0KZm9yZWFjaCAoJGhvdHZp
...

阅读全文...

显示alexa世界排名logo代码

[ 2008-05-25 00:36:56 | 作者: Admin ]
演示
http://www.85815.com/alexa/iframeAlexa.asp?alexaScript=85815.com

把85815.com改成你自己的就可以咯

调用的话用iframe代码如下
<iframe width="120" scrolling="no" height="95" frameborder="0" src="http://www.85815.com/alexa/iframeAlexa.asp?alexaScript=url.com"></iframe>

本站原创,如有雷同,纯属巧合! [lol]

bo-blog内容页添加广告方法

[ 2008-05-24 22:11:59 | 作者: Admin ]
/template/default/下打开模板文件elements.php,找到
<div class="textbox-content" id="zoomtext">

在下方加入:
<div style="float: right" align="right">
<script type="text/javascript" src="js.js"></script>
</div>

其中js.js就是你的广告代码.
如果是投放google的广告代码的话则需要先把google提供的广告代码转换成js才可以调用~~
HTML转JS地址 http://www.85815.com/old/htmltojs.asp

JS.JS的内容为
document.write("<script type=\"text\/javascript\"><!--");
...

阅读全文...