网页制作常用代码四

网页制作常用代码

showModalDialog(sURL [, vArguments] [, sFeatures])
//打开一个模式对话框
//vArguments=需要向新开模式对话框传递的参数
//sFeatures=(*dialogHeight:sHeight;dialogLeft:sXPos;dialogTop:sYPos;dialogWidth:sWidth;center:{ yes | no | 1 | 0 | on | off };dialogHide:{ yes | no | 1 | 0 | on | off };edge:{ sunken | raised };help:{ yes | no | 1 | 0 | on | off };resizable:{ yes | no | 1 | 0 | on | off };scroll:{ yes | no | 1 | 0 | on | off };status:{ yes | no | 1 | 0 | on | off };unadorned:{ yes | no | 1 | 0 | on | off };*)

showModelessDialog(sURL [, vArguments] [, sFeatures])
//打开一个非模式对话框
//vArgument=需要向新开模式对话框传递的参数
//sFeatures=(*dialogHeight:sHeight;dialogLeft:sXPos;dialogTop:sYPos;dialogWidth:sWidth;center:{ yes | no | 1 | 0 | on | off };dialogHide:{ yes | no | 1 | 0 | on | off };edge:{ sunken | raised };help:{ yes | no | 1 | 0 | on | off };resizable:{ yes | no | 1 | 0 | on | off };scroll:{ yes | no | 1 | 0 | on | off };status:{ yes | no | 1 | 0 | on | off };unadorned:{ yes | no | 1 | 0 | on | off };*)
********************************************
execCommand的完全参考(中文版)
document.execCommand(sCommand[,交互方式, 动态参数])

2D-Position;document.execCommand("2D-Position","false","true");使绝对定位的对象可直接拖动;ie5.5
AbsolutePosition;document.execCommand("AbsolutePosition","false","true");使对象定位变成绝对定位;ie5.5
BackColor;document.execCommand("BackColor","false",sColor);设置背景颜色;ie4.0
BlockDirLTR;none;使块级元素排版方式为从左到右?;不支持
BlockDirRTL;none;使块级元素排版方式为从右到左?;不支持 Bold;document.execCommand("Bold","false",null);使选中区域的文字加粗;ie4.0
BrowseMode;none;设置浏览器模式?;不支持 Copy;
document.execCommand("Copy","false",null);复制选中的文字到剪贴板;ie4.0 CreateBookmark;document.execCommand("CreateBookmark","false",sAnchorName);设置指定锚点为书签;ie4.0
CreateLink;document.execCommand("CreateLink","false",sLinkURL);将选中文本变成超连接,若第二个参数为true,会出现参数设置对话框;ie4.0
Cut;document.execCommand("Cut","false",null);剪贴选中的文字到剪贴板;ie4.0
Delete;document.execCommand("Delete","false",null);删除选中的文字;ie4.0
DirLTR;none;排版方式为从左到右?;不支持 DirRTL;none;排版方式为从右到左?;不支持
EditMode;none;设置编辑模式?;不支持
FontName;document.execCommand("FontName","false",sFontName);改变选中区域的字体;ie4.0
FontSize;document.execCommand("FontSize","false",sSize|iSize);改变选中区域的字体大小;ie4.0
ForeColor;document.execCommand("ForeColor","false",sColor);设置前景颜色;ie4.0
FormatBlock;document.execCommand("FormatBlock","false",sTagName);设置当前块的标签名;ie4.0
********************************************
如何把页面加入用户的收藏夹?
<a href="javascript:window.external.AddFavorite('http://','网页教学网脚本')">收藏网页教学网脚本</a>
********************************************
如何让浏览器在保存页面时保存失败?
<NOSCRIPT>
<IFRAME SRC="*.html">
</IFRAME>
</NOSCRIPT>
********************************************
一个页面内所有复选框的全选功能如何实现?
<input type=checkbox><input type=checkbox>
<input type=checkbox><input type=checkbox>
<button onclick=SelectAll()>SelectAll</button>
<script>
function SelectAll()
{
var cInput=document.all.tags('INPUT');
for(var i in cInput)
if(cInput[i].type=='checkbox')cInput[i].checked=true;
}
</script>
********************************************
如何在不刷新页面的情况下刷新css?
<style>
button{ color:#000000;}
</style>
<button onclick=document.styleSheets[0].rules[0].style.color='red'>点击按钮直接修改style标签里button选择符使按钮改为红色</button>

时间: 2024-11-05 12:07:45

网页制作常用代码四的相关文章

网页制作常用代码二

网页制作常用代码 如何让超链接没有下划线 在源代码中的<HEAD>-</HEAD>之间输入如下代码: <style type="text/css"> <!-- a { text-decoration: none} --> </style> ******************************** 请问如何做到让一个网页自动关闭. <html> <head> <OBJECT id=close

网页制作常用代码一

网页制作常用代码一请问如何去掉主页右面的滚动条? <body scroll="no"> <body style="overflow-y:hidden"> ******************************** 怎样不使用页面的缓存?即每一次打开页面时不是调用缓存中的东西 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> **********

推荐:网页制作常用代码集锦

网页 点击返回上页代码:<form><p><input TYPE="button" VALUE="返回上一步" ></p></form> 弹出警告框代码:<form><p><input TYPE="button" VALUE="弹出警告框" ></p></form><script language=&q

CSS网页制作实例代码:模拟新浪微博的三角图像

文章简介:CSS网页制作实例代码:新浪微博的三角图像. <!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

谁能提供一段网页制作的代码????

问题描述 谁能提供一段网页制作的代码谢了我是一个新手 解决方案 解决方案二:该回复于2009-03-18 07:24:36被版主删除

asp判断函数一览及网页制作常用技(2)

函数|网页 ASP网页制作技巧      1.获得系统时间:          <%=now()%>            2.取得来访用的IP:       <%=request.serverVariables("remote_host")%>            3.获得系统,浏览器版本:       <script>       window.document.write("版本:"+navigator.appName+n

ASP判断函数总结及网页制作常用技巧

函数|技巧|网页 <1>IsArray 函数 返回 Boolean 值指明某变量是否为数组. 语法 IsArray(varname) varname 参数可以是任意变量. 说明 如果变量是数组,IsArray 函数返回 True:否则,函数返回 False.当变量中包含有数组时,使用 IsArray 函数很有效. <2>IsDate 函数 返回 Boolean 值指明某表达式是否可以转换为日期. 语法 IsDate(expression) expression 参数可以是任意可被识

入门:初学ASP动态网页制作常用错误处理

初学|错误|错误处理|动态|网页 ASP错误处理 ASP是非常简单的,以至于许多的开发者不会去思考错误处理.错误处理能够让你的应用程序更加合理.我看到过很多个用ASP编写的商业网站,大多数都忽略了错误处理.   错误的类型 有三种主要的错误类型:  编译错误: 这种错误出现一般都是代码的语法问题.因为编译错误而导致辞ASP停止运行.  运行错误 这个错误是发生在你准备运行ASP时的.例如:如果你试图给一个变量赋值,但是却超出了该变量允许的范围.  逻辑错误 逻辑错误是最难被发现的,这种错误经常是

asp判断函数一览及网页制作常用技(1)

函数|网页      <1>IsArray 函数    返回 Boolean 值指明某变量是否为数组.                语法    IsArray(varname)    varname 参数可以是任意变量.       说明    如果变量是数组,IsArray 函数返回 True:否则,函数返回 False.当变量中包含有数组时,使用 IsArray 函数很有效.      <2>IsDate 函数    返回 Boolean 值指明某表达式是否可以转换为日期.