图片过大,撑破内容内的表格最简单解决方法! (图片自动缩放大小)
作者:cmscn 日期:2010-02-01
让eWebEditor编辑器支持IE6.IE7.IE8傲游浏览器的方法
作者:cmscn 日期:2009-12-04
解决eWebEditor不支持IE8.IE7.傲游浏览器的方法如下:
1、首先找到eWebEditor编辑器所在的目录,然后搜索到editor.js文件,由于eWebEditor有很多个版本,所以editor.js文件所在的目录也有所不同,有的可能在Include目录下,有的可能在js目录下。
2、用记事本打开editor.js文件,找到如下代码:
if (element.YUSERONCLICK) {
1、首先找到eWebEditor编辑器所在的目录,然后搜索到editor.js文件,由于eWebEditor有很多个版本,所以editor.js文件所在的目录也有所不同,有的可能在Include目录下,有的可能在js目录下。
2、用记事本打开editor.js文件,找到如下代码:
if (element.YUSERONCLICK) {
Tags: ewebeditor
PHP 版的 Javascript 压缩混淆工具 [ Dean Edwards Packer ]
作者:cmscn 日期:2009-09-27
Dean Edwards 's Packer 是个非常有名的 Javascript 压缩/混淆工具,有 .NET / PERL / WSH / PHP 等几种版本, 而本文介绍的 就是Nicolas Martin 发布的 PHP 版。
使用说明:
所有声明,包括 function 函数定义,必须以分号结尾,示例代码:
Javascript: // sample code var $input, $output; // notice the semi-colon at the END of function declarations onload = function() { $input = document.getElementById("input"); $output = document.getElementById("output"); _clearAll(true); }; function _packScript() { $output.value = pack($input.value); }; function _clearAll($focus) { $output.value = $input.value = ""; // the "if" statement is NOT terminated with a semi-colon if ($focus) { $input.focus(); } };
使用说明:
所有声明,包括 function 函数定义,必须以分号结尾,示例代码:
Javascript: // sample code var $input, $output; // notice the semi-colon at the END of function declarations onload = function() { $input = document.getElementById("input"); $output = document.getElementById("output"); _clearAll(true); }; function _packScript() { $output.value = pack($input.value); }; function _clearAll($focus) { $output.value = $input.value = ""; // the "if" statement is NOT terminated with a semi-colon if ($focus) { $input.focus(); } };
Tags: 压缩
jQuery技巧大放送
作者:cmscn 日期:2009-09-09
jQuery技巧大放送
1、关于页面元素的引用
通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法,且返回的对象为jquery对象(集合对象),不能直接调用dom定义的方法。
2、jQuery对象与dom对象的转换
只有jquery对象才能使用jquery定义的方法。注意dom对象和jquery对象是有区别的,调用方法时要注意操作的是dom对象还是jquery对象。
普通的dom对象一般可以通过$()转换成jquery对象。
1、关于页面元素的引用
通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法,且返回的对象为jquery对象(集合对象),不能直接调用dom定义的方法。
2、jQuery对象与dom对象的转换
只有jquery对象才能使用jquery定义的方法。注意dom对象和jquery对象是有区别的,调用方法时要注意操作的是dom对象还是jquery对象。
普通的dom对象一般可以通过$()转换成jquery对象。
Tags: jQuery
为你的论坛添加宣传代码"粘贴到你的QQ/MSN上推荐给你的好友
作者:cmscn 日期:2009-09-01
新闻滚动效果
作者:cmscn 日期:2009-08-30
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title> code.js.cn </title>
<style>
a{display:block;font-size:15px;line-height:18px;text-decoration:none;color:#333;font-family:Arial;font-size:12px;}
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title> code.js.cn </title>
<style>
a{display:block;font-size:15px;line-height:18px;text-decoration:none;color:#333;font-family:Arial;font-size:12px;}
超级实用且不花哨的js代码大全
作者:cmscn 日期:2009-08-26
图片默认是灰色的,鼠标移上去就是彩色的
作者:cmscn 日期:2009-08-24
网页中任意漂浮的广告代码
作者:cmscn 日期:2009-07-20
符合网页标准的随滚动条滚动的广告特效
作者:cmscn 日期:2009-07-19
<!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" xml:lang="en" lang="en">
<head>
<title>符合网页标准的随滚动条滚动的广告特效代码-建站学-jzxue.com</title>
</head>
<body>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>符合网页标准的随滚动条滚动的广告特效代码-建站学-jzxue.com</title>
</head>
<body>
Tags: 滚动