- 浏览: 25764 次
- 性别:
- 来自: 上海
最新评论
-
Jonlydavi:
194行有错误?
时间控件 -
taote:
东西不错,有没有精确到秒的?
时间控件 -
PointOnLine:
国外树形菜单 范例 推荐!!! -
jhddxp:
这在FF下还是不行的吧
关于 英文长字符串 在IE FF下不兼容问题 解决方案 -
pireswang:
踏雪留痕,各位。
输入框提示 google sugesstion
文章列表
autocomplete支持:
1:本地响应模式。2.Ajax模式。
---------------------------------------------------------------------------------------------
autocomplete文件
包括:
autocomplete
使用说明.doc
data.js
autocomplete.js
...
由于做项目的时候,InfoCC弹出页面较多,有的甚至父子页面关系有好几层而且在
更新树形菜单数据的时候,会遇到跨iframe访问的问题
。
因此为了方便访问页面元素我这边做了一些例子仅供参考。
1. A iframe的页面访问B iframe页面的内容。
parent.document.getElementById('B
iframe的ID').contentWindow.document.getElementById('B
iframe页面要访问的元素ID')
2. A iframe的3级页面访问B iframe页面的内容。
...
- 2009-02-09 11:35
- 浏览 5268
- 评论(0)
下拉框和文本框合体控件
- 博客分类:
- Javascript
此控件解决让下拉框可读可写。
将以前页面的:
<table width="100%" cellpadding="0" cellspacing="0"
style="margin:3px 0px 3px
0px;line-height:1.5em
;">
<tr>
<td
class="wordwrap" width="33%" valign="top" align="center&quo ...
- 2009-02-09 11:58
- 浏览 1124
- 评论(1)
1.页面js src到js/jslib 找到 calendar.js
css href到 style/ 找到 calendar.css
即可。
2.前面页面写上:
<body onload="loadcalendar();">
<input type="text" onClick="showcalendar(event, this, true, (new Date()), (new
Date()));" onFocus="showcalendar(e ...
- 2009-02-09 11:52
- 浏览 1117
- 评论(2)
1.页面js src到js/web 找到 tools.js 中的函数:function
listToList(list1,list2,direction,operation)。
2.前面页面 写上:
<table width="27%" height="194" border="0"
cellpadding="1" cellspacing="0">
<tr>
<td
width="21%"> ...
- 2009-02-09 11:46
- 浏览 1312
- 评论(0)
1.页面js src到js/web 找到 tools.js 中的函数:function
switchTag(totalNum,selectNum,listName,obj)。
2.前面页面写上:
<div class="tab_page">
<div
class="tab_page_title">
<ul class="tab_page_items">
<li class="tab_p ...
- 2009-02-09 11:44
- 浏览 961
- 评论(0)
说明:
页面上前台向后台传checkbox
value数据,除了form提交之外,还可以在你自定义的函数中调用checkSelect(name)来获取被选中的value数组。
具体做法如:可见附件demo。
1.页面js src到js/web 找到 web.js 中的函数:fullChecked(name,self) 和 checkSelect(name)。
2.前面页面 写上:
<input type="checkbox"
name="slt ...
- 2009-02-09 11:41
- 浏览 3104
- 评论(0)
<html>
<head>
<title>Wordwrap for Mozilla</title>
<style type="text/css">
.wordwrap
{
word-wrap:break-word;
word-break:break-all;
-moz-binding: url('./wordwrap.xml#wordwrap');
overflow: hidden;
}
</style>
</head>
<body>
<div ...
- 2009-02-09 11:37
- 浏览 936
- 评论(0)
双击自动滚屏
- 博客分类:
- Javascript
<script>
var currentpos,timer;
function initialize(){
timer=setInterval("scrollwindow()",50);
}
function sc(){
clearInterval(timer);
}
function scrollwindow(){
currentpos=docum ...
- 2009-02-09 11:29
- 浏览 958
- 评论(0)
<html><br>
<head><br>
<title>css圆角效果--网页特效</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<style type="text/css">
div.RoundedCorner{background: #9BD1FA}
b.rtop, b.rbottom{display:block;backgrou ...
- 2009-02-09 11:27
- 浏览 987
- 评论(0)