- 浏览: 4689 次
- 性别:
- 来自: 郑州
最新评论
文章列表
String.prototype.Trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); }
String.prototype.LTrim = function() { return this.replace(/(^\s*)/g, ""); }
String.prototype.RTrim = function() { return this.replace(/(\s*$)/g, ""); }
//现在JS也可以直接调用TRIM,LTRIM,RTRIM来去除多余的 ...
<script language="JavaScript">
// 两个方法后缀不一样
// 创建快捷方式一
function toDesktop(sUrl,sName){
try {
var WshShell = new ActiveXObject("WScript.Shell");
//在指定的文件夹下创建名为sName的快捷方式
var oUrlLink = WshShell.CreateShortcut(WshShell.SpecialFolders("Desktop") + & ...
<!--消除表格间隙-->
<table cellspacing="0" cellpadding="0" >
<!-- Tr 行高为0 -->
<tr style="line-height: 0px;">
<!-- td 内容自动换行 -->
<td style='word-break:break-all'>
<!-- iframe 显示无边框 -->
<iframe frameborder="no&quo ...
//通过js为对象添加样式
obj.addClass("classname");
//通过js为对象移除样式
obj.removeClass("classname");
//获取当前页面url
window.location.href
//判断字符包含关系
str.indexOf("str")>0 //包含
//每10分加载 1秒=1000毫秒 1000*60*10
setTimeout("fun()", 600000);
//获取父页面对象
window.opener.docu ...
页面引入CSS
<link rel="stylesheet" href="/themes/style.css" type="text/css"/>
页面引入js
<script type="text/javascript" src="/themes/test.js" />
css 注释
/* 注释内容 */
js 注释
/* 注释内容 */ //注释内容