标签 javascript 下的文章

javascript对话框

javascript对话框只要有3种方式:alert()使用频率比较高     prompt()     confirm()1.alert() 方法会创建一个独立的小窗口---对话框。alert代码示例:<html><head><title>alert的实例</title></head><...

JinYon 2013 年 05 月 05 日 暂无评论

javascript显示textarea剩余字数

javascript显示textarea剩余字数<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><meta name="robots" content="all" /><meta name="author" content=...

JinYon 2012 年 12 月 28 日 暂无评论

javascript定时关闭的层

javascript定时关闭的层<!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"><h...

JinYon 2012 年 12 月 28 日 暂无评论

javascript点击复制文本框代码

javascript点击复制文本框代码<html><head><title>点击复制地址的代码</title></head><body><input type="button" name="Submit" onClick='copyToClipBoard()' value="复制"><i...

JinYon 2012 年 12 月 28 日 暂无评论

javascript让iframe自适应高度

javascript让iframe自适应高度<script language="javascript"><!--function SetWinHeight(obj){var win=obj;if (document.getElementById){if (win && !window.opera){if (win.contentDocument &&...

JinYon 2012 年 12 月 28 日 暂无评论