当前位置: 首页 > 图文教程 > 网络编程 > Javascript > Javascript代码在网页中简单应用的几个示例

Javascript
JS+XML 省份和城市之间的联动实现代码
ie与firefox下的event使用说明与详细区别
Jquery 学习笔记(二)
jQuery技巧大放送 学习jquery的朋友可以看下
使用jQuery简化Ajax开发 Ajax开发入门
jQuery入门 构造函数
JavaScript iframe的相互操作浅析
JavaScript null和undefined区别分析
JavaScript 替换Html标签实现代码
jQuery 标题的自动翻转实现代码
JavaScript读取中文cookie时的乱码问题的解决方法
JavaScript 动态创建VML的方法
JavaScript Array扩展实现代码
javascript线性渐变一
javascript 线性渐变二
javascript 线性渐变三
滑动门式菜单 实现代码
extjs 学习笔记(三) 最基本的grid
javascript 操作cookies及正确使用cookies的属性
JavaScript 基础知识 被自己遗忘的

Javascript代码在网页中简单应用的几个示例


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-28   浏览: 131 ::
收藏到网摘: n/a

在表格里本来居左的图片当点击(图片或表元)后移到表格的居中位置:

以下为引用的内容:
<script language="JavaScript">
function call(xxx){
xxx.align="left";
}
function letback(yyy){
yyy.align="right";
}
</script>

文件里面这样引用:

以下为引用的内容:
<td id="mainbtn3" align="right" height="31" onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','show')" width="250"><img src="images/redbtn_3.gif" width="216" height="21" onClick="letback(mainbtn1);letback(mainbtn2);call(mainbtn3)" style="cursor:w-resize"></td> 

 
xp样式菜单效果

以下为引用的内容:
<script language="JavaScript" type="text/javascript">
<!--
function rollon(a) {
a.style.backgroundColor='#C8C8C8';
a.style.border = '#808080 solid 1px'; } function rolloff(a) {
a.style.backgroundColor='#E4E4E4';
a.style.border = '#E4E4E4 solid 1px';
}
//-->
</script>
<style type="text/css">
<!--
.off { background-color: #e4e4e4; border-color: #e4e4e4 #E4E4E4 #E4E4E4; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px}
-->
</style>

HTML链接处用:

以下为引用的内容:
<tr>
<td class="off" onMouseOut="rolloff(this);" onMouseOver="rollon(this);" height="12"><a href="#">
Summary Report</a> </td>
</tr>

极酷的跟随鼠标的带年月日显示的动态时钟CLOCK 
 
一个链接改变多个目标帧文件的内容

以下为引用的内容:
<script language="javascript">
function frame_loader(targetLeft,targetMain){
parent.leftFrame.location.href= targetLeft;
parent.mainFrame.location.href= targetMain;
}
</script>
<a
href="javascript:frame_loader('default_left.asp','default_body.asp')">Link</a>

 
左右击都在本页打开目标页

以下为引用的内容:

<script language="JavaScript">
<!--
function clicklink() {window.location="index.html"}
//-->
</script>

IN HTML:

<body bgcolor="#FFFFFF" text="#000000" onMouseDown="clicklink()"> 


 
检测屏幕分辨率导入不同页面

以下为引用的内容:
<script language="JavaScript">
<!--
function KBScreenGoToURL(Big,Medium,Small,Tiny) {
// Copyright (c) 1998 by Kevin Bartz. All rights reserved. This site has been enhanced by one of Kevin Bartz's behaviours! Mail him at [email protected]! This line must remain in the script.
IE4=(document.all) ? 1:0
NS4=(document.layers) ? 1:0
if (NS4 | IE4) {
var h=screen.height
var w=screen.width
if (h<580 & w<740) {
window.location=Tiny
} else if (h<674 & w<835) {
window.location=Small
} else if (h<768 & w<929) {
window.location=Medium
} else {
window.location=Big
}
}
}
//-->
</script>

HTML:

以下为引用的内容:
<p>
<body bgcolor="#FFFFFF" onLoad="KBScreenGoToURL('1024.htm','1024.htm','800.htm','800.htm')">

或者用下面这段:

以下为引用的内容:
<html>
<head>
<script language=javascript>
<!--
function mHref() {
if (screen.width == 1024) location.href = "htm2.htm";
else if (screen.width == 800) location.href = "htm1.htm";
else return(false);
}
//-->
</script>
</head>
<body onload="mHref();">
</body>
</html>

 
点击一个链接打开二个不同页面的窗口
<A href="http://msdn.microsoft.com/vs/techinfo/" target="_blank" onClick="window.open('temp.htm','','')">Visual Studio</A>

这二个页面都将在新窗口中打开,如果要在本页打开,不能用windo.open要用:window.location=""或document.location.href=""

隐藏目标区域的下拉框等组件

隐藏目标区域的下拉框等组件,让它在层(菜单)出现时不挡住目标层(抄自微软)

代码如下:

以下为引用的内容:

<script language="JavaScript" type="text/javascript">
<!--
function hideElement(elmID)
{
for (i = 0; i < document.all.tags(elmID).length; i++)
{
obj = document.all.tags(elmID)[i];
if (! obj || ! obj.offsetParent)
continue;
// Find the element's offsetTop and offsetLeft relative to the BODY tag.
objLeft = obj.offsetLeft;
objTop = obj.offsetTop;
objParent = obj.offsetParent;
while (objParent.tagName.toUpperCase() != "BODY")
{
objLeft += objParent.offsetLeft;
objTop += objParent.offsetTop;
objParent = objParent.offsetParent;
}
if (objTop < 250){
obj.style.visibility = "hidden";
}
}
}
function showElement(elmID)
{
for (i = 0; i < document.all.tags(elmID).length; i++)
{
obj = document.all.tags(elmID)[i];
if (! obj || ! obj.offsetParent)
continue;
obj.style.visibility = "";
}
}
function hidelayer()
{var i; for(i=1;i<=4;++i){document.all['nav'+i].style.visibility='hidden';}
showElement("SELECT");
showElement("OBJECT");
showElement("IFRAME");}
function showlayer(index)
{document.all['nav'+index].style.visibility='visible';
hideElement("SELECT");
hideElement("OBJECT");
hideElement("IFRAME");}
//-->
</script>