文章标题关闭所有内容预览 | 展开所有内容预览
-
jss函数使用及调用规则
[内容预览]
15 | 2009-04-17
JavaScript函数调用规则一 (1)全局函数调用: function makeArray( arg1, arg2 ){ return [this , arg1 , arg2 ]; } 这是一个最常用的定义函数方式。相信学习JavaScript的人对它的调用并不陌生。 调...
[阅读全文]
-
IE和火狐浏览器常见的兼容代码问题
[内容预览]
182 | 2009-04-17
1. document.form.item 问题 (1)现有问题: 现有代码中存在许多 document.formName.item("itemName") 这样的语句,不能在 MF 下运行 (2)解决方法: 改用 document.formName.elements["elementName"] (3)其它 参...
[阅读全文]
-
浮动层显示JS
[内容预览]
303 | 2009-04-16
var offsetx = -120; var offsety = -100; ns4 = (document.layers)? true:false ie4 = (document.all)? true:false if (ie4) { if (navigator.userAgent.indexOf('MSIE 5')>0) { ie5 = true; } else { ...
[阅读全文]
-
js操作数据库
[内容预览]
70 | 2009-04-16
- <script language="javascript" runat="server"> var conn=new ActiveXObject("ADODB.Connection"); conn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Server.MapPath("data.mdb")...
[阅读全文]
-
鼠标事件onmouse资料大全
[内容预览]
311 | 2009-04-16
一般事件 事件 浏览器支持 描述 onClick IE3|N2|O3 鼠标点击事件,多用在某个对象控制的范围内的鼠标点击 onDblClick IE4|N4|O 鼠标双击事件 onMouseDown IE4|N4|O 鼠标上的按钮被按下了 onMouseUp IE4|N4|O...
[阅读全文]
-
用javascript控制div的显示与隐藏
[内容预览]
694 | 2009-04-16
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <script language="JavaScript" type="text/JavaScript"> <!-- function toggle(targetid...
[阅读全文]
-
JS页面跳转
[内容预览]
172 | 2009-04-16
按钮式: <INPUT name="pclog" type="button" value="GO" onClick="location.href='http://www.okhan.cn/'"> 链接式: <a href="javascript:history.go(-1)">返回上一步</a> <a href="<%=Request.Serve...
[阅读全文]
-
兼容IE,火狐等多浏览的右下角飘浮广告代码---相当好用
[内容预览]
1451 | 2009-04-16
document.writeln(" <script type=\"text\/javascript\">"); document.writeln(" <!--"); document.writeln("document.writeln(\" <div id=\\\"ShowAD\\\" style=\\\"position:absolute; z-index: 100;\\\"> \");"...
[阅读全文]