- 浏览: 1376538 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (551)
- 计划 (4)
- java (115)
- oracle (60)
- ajax (3)
- javascript (64)
- 计算机操作技巧集 (11)
- 近期关注话题 (10)
- 随想 (13)
- html (6)
- struts (15)
- hibernate (16)
- spring (2)
- game (0)
- Eglish (10)
- DisplayTag (6)
- jsp (18)
- css (3)
- eclipse (3)
- 其他知识 (8)
- 备用1 (12)
- 备用2 (1)
- 笑话-放松心情 (9)
- 设计 (1)
- 设计模式 (1)
- 数据结构 (0)
- office办公软件 (5)
- webwork (0)
- tomcat (2)
- MySql (1)
- 我的链接资源 (5)
- xml (2)
- servlet (0)
- PHP (13)
- DOM (0)
- 网页画图vml,canvas (1)
- 协议 (2)
- 健康 (3)
- 书籍下载 (1)
- jbpm (1)
- EXT (1)
- 自考 (2)
- 报表 (4)
- 生活 (64)
- 操作系统基础知识 (2)
- 测试 (2)
- guice (1)
- google学习 (2)
- Erlang (1)
- LOG4J (2)
- wicket (1)
- 考研 (1)
- 法律 (1)
- 地震 (1)
- 易学-等等相关 (1)
- 音乐 (1)
- 建站 (4)
- 分享说 (3)
- 购物省钱 (0)
- linux (1)
最新评论
-
zenmshuo:
如果使用SpreadJS这一类的表格工具,应该能更好的实现这些 ...
js中excel的用法 -
hjhj2991708:
第一个已经使用不了
jar包查询网站 非常好用! -
jiangmeiwei:
...
中文乱码 我的总结 不断更新 -
gary_bu:
...
response.sendRedirect 中文乱码问题解决 -
hnez:
多谢指点,怎么调试也不通,原来我在<body>&l ...
ExtJs IE ownerDocument.createRange() 错误解决方案
[url]来自
<body topmargin="5" leftmargin="3" bottommargin="5" rightmargin="0"><center><center>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<form id="classListForm" name="classListForm" method="post">
<div align="center"><font size="3" color="black"><b>课程表</b></font></div>
<div style="padding-top:5px;padding-bottom:5px;width:100%" align=left>
<td>
<button property="new" value="新 增" onclick="addClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'" title="新 增">新 增</button>
<button property="edit" value="修 改" onclick="editClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'">修 改</button>
<button property="delete" value="删 除" onclick="deleteClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'">删 除</button>
</td>
<td align=right>输入关键字:<input class="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'" type=text name="keyword">
<button property="search" value="查 找" onclick="findClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'">查 找</button>
</td>
</div>
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<tr bgcolor="#dddddd" align="center"><th width="6%" align="left"><input type='checkBox' onClick= "selectAllButDisabled(this.form)" class="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'"><b style="color:black" align=center>全选</b></th>
<th width="20%"><b style="color:black" align=center>课程名称</b></th>
<th width="8%"><b style="color:black" align=center>任课老师</b></th>
<th width="7%"><b style="color:black" align=center>上课时间</b></th>
<th width="8%"><b style="color:black" align=center>下课时间</b></th>
<th width="8%"><b style="color:black" align=center>课程开始日期</b></th>
<th width="8%"><b style="color:black" align=center>课程有效日期</b></th>
<th width="40%"><b style="color:black" align=center>备注</b></th>
</tr>
<%
//声明一个DAO(IClassesDAO)接口,它的实现是ClassesDAO类,
//用这个接口可以实现查询数据库和获取数据记录,还可以进行增加、修改、删除等操作
IClassesDAO classesDAO = new ClassesDAO();
try{
//声明一个List集合,这个集合保存了数据库中的数据
List classList = classesDAO.getList();
%>
<%
int i = 0;
for( ; i < classList.size(); i++ ){
Classes clazz = ( Classes )classList.get( i );
%>
<tr>
<td><input type="checkbox" id="ClassId" name="ClassId" value="<%=clazz.getClassId()%>" onClick = "chkSelect(this.form)" class="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'"/>
<c:out value="<%=i + 1%>"/>
</td>
<td><a href="JavaScript:updateClass('${class.classId}');" title="编辑"><%=clazz.getClassName()%></a></td>
<td><%=clazz.getTeacher()%></td>
<td><%=clazz.getStartTime()%></td>
<td><%=clazz.getEndTime()%></td>
<td><%=clazz.getStartDate()%></td>
<td><%=clazz.getEndDate()%></td>
<td><%=clazz.getRemark()%></td>
</tr>
<%
}
}catch( Exception e ){
e.printStackTrace();
}
finally{
classesDAO.close();
}
%>
</table>
</form>
</table>
</body>
♂天使♀(188784048) 17:08:26
function selectAll(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if (theFrm.elements[i].type=="checkbox") {
theFrm.elements[i].checked = event.srcElement.checked;
}
}
}
function deselectAll(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" ) {
if (!theFrm.elements[i].disabled) {
if (theFrm.elements[i].checked)
theFrm.elements[i].checked=false;
else
theFrm.elements[i].checked=true;
}
}
}
}
//
function selectAllButDisabled(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" && theFrm.elements[i].disabled == false ) {
theFrm.elements[i].checked = event.srcElement.checked;
}
}
}
function selectAllButReadonly(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" && theFrm.elements[i].readonly == false ) {
theFrm.elements[i].checked = event.srcElement.checked;
}
}
}
//¨o? ¤?¨ D???D
function chkSelect(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" ) {
if (theFrm.elements[i].checked) return true;
}
}
return false;
}
[/url]
<body topmargin="5" leftmargin="3" bottommargin="5" rightmargin="0"><center><center>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<form id="classListForm" name="classListForm" method="post">
<div align="center"><font size="3" color="black"><b>课程表</b></font></div>
<div style="padding-top:5px;padding-bottom:5px;width:100%" align=left>
<td>
<button property="new" value="新 增" onclick="addClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'" title="新 增">新 增</button>
<button property="edit" value="修 改" onclick="editClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'">修 改</button>
<button property="delete" value="删 除" onclick="deleteClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'">删 除</button>
</td>
<td align=right>输入关键字:<input class="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'" type=text name="keyword">
<button property="search" value="查 找" onclick="findClass();" styleClass="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'">查 找</button>
</td>
</div>
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<tr bgcolor="#dddddd" align="center"><th width="6%" align="left"><input type='checkBox' onClick= "selectAllButDisabled(this.form)" class="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'"><b style="color:black" align=center>全选</b></th>
<th width="20%"><b style="color:black" align=center>课程名称</b></th>
<th width="8%"><b style="color:black" align=center>任课老师</b></th>
<th width="7%"><b style="color:black" align=center>上课时间</b></th>
<th width="8%"><b style="color:black" align=center>下课时间</b></th>
<th width="8%"><b style="color:black" align=center>课程开始日期</b></th>
<th width="8%"><b style="color:black" align=center>课程有效日期</b></th>
<th width="40%"><b style="color:black" align=center>备注</b></th>
</tr>
<%
//声明一个DAO(IClassesDAO)接口,它的实现是ClassesDAO类,
//用这个接口可以实现查询数据库和获取数据记录,还可以进行增加、修改、删除等操作
IClassesDAO classesDAO = new ClassesDAO();
try{
//声明一个List集合,这个集合保存了数据库中的数据
List classList = classesDAO.getList();
%>
<%
int i = 0;
for( ; i < classList.size(); i++ ){
Classes clazz = ( Classes )classList.get( i );
%>
<tr>
<td><input type="checkbox" id="ClassId" name="ClassId" value="<%=clazz.getClassId()%>" onClick = "chkSelect(this.form)" class="btn3_mouseout" style="btn3_mouseout" onmouseover="this.className='btn3_mouseover'" onmouseout="this.className='btn3_mouseout'" onmousedown="this.className='btn3_mousedown'" onmouseup="this.className='btn3_mouseup'"/>
<c:out value="<%=i + 1%>"/>
</td>
<td><a href="JavaScript:updateClass('${class.classId}');" title="编辑"><%=clazz.getClassName()%></a></td>
<td><%=clazz.getTeacher()%></td>
<td><%=clazz.getStartTime()%></td>
<td><%=clazz.getEndTime()%></td>
<td><%=clazz.getStartDate()%></td>
<td><%=clazz.getEndDate()%></td>
<td><%=clazz.getRemark()%></td>
</tr>
<%
}
}catch( Exception e ){
e.printStackTrace();
}
finally{
classesDAO.close();
}
%>
</table>
</form>
</table>
</body>
♂天使♀(188784048) 17:08:26
function selectAll(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if (theFrm.elements[i].type=="checkbox") {
theFrm.elements[i].checked = event.srcElement.checked;
}
}
}
function deselectAll(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" ) {
if (!theFrm.elements[i].disabled) {
if (theFrm.elements[i].checked)
theFrm.elements[i].checked=false;
else
theFrm.elements[i].checked=true;
}
}
}
}
//
function selectAllButDisabled(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" && theFrm.elements[i].disabled == false ) {
theFrm.elements[i].checked = event.srcElement.checked;
}
}
}
function selectAllButReadonly(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" && theFrm.elements[i].readonly == false ) {
theFrm.elements[i].checked = event.srcElement.checked;
}
}
}
//¨o? ¤?¨ D???D
function chkSelect(theFrm) {
for (i=0 ;i< theFrm.elements.length;i++){
if ( theFrm.elements[i].type == "checkbox" ) {
if (theFrm.elements[i].checked) return true;
}
}
return false;
}
[/url]
发表评论
-
给HTML增加自定义属性
2010-01-08 16:40 3189增加自定义属性 <input type="te ... -
ExtJs IE ownerDocument.createRange() 错误解决方案
2009-12-07 09:22 3839在开发ExtJs程序的过程中,遇到如下问题:在firefox中 ... -
js面向对象
2009-07-30 17:40 1145关于js 面向对象的优秀文章的连接 有困难,找猪八戒 htt ... -
javascript辅助方法--不断更新
2009-05-08 11:19 1037有困难,找猪八戒 对js中的辅助方法进行收集,不断补充 /*得 ... -
javascript js 飘浮 图片 或者 文字
2009-03-25 19:18 2340本文引自http://www.webmasters-centr ... -
js去掉开头和结尾的空格 js trim
2009-03-24 10:07 7309/* * 去掉开头和结尾的space, tab, form ... -
js中excel的用法
2009-03-18 08:57 8529有困难,找猪八戒 转载自: http://hi.baidu.c ... -
js insertCell colspan
2009-03-12 14:37 4880转自:http://objectmix.com/javascr ... -
js IE关闭窗口
2009-01-15 20:08 1987参考文章: http://www.webdeveloper.c ... -
js客户端验证上传文件大小
2009-01-13 16:05 4834有困难,找猪八戒 function getFileSize(f ... -
偶然发现一个小工具,查看颜色
2008-12-30 13:15 1775偶然发现一个小工具,查看颜色 另外,再加上两个小工作:颜色和像 ... -
window.open 方法怪问题 参数失效
2008-10-31 18:12 2424window.open(URL,name,specs,repl ... -
一些浏览器的屏蔽功能
2008-10-30 18:23 1419http://www.putiancheng.com/tool ... -
一个好用的js树 梅花雪MzTreeView
2008-10-24 19:20 3824主要是速度特别快 用另外一个js树,要100秒,用这个,1秒 ... -
解决JavaScript页面刷新与弹出窗口问题
2008-10-11 09:45 1897解决JavaScript页面刷新与弹出窗口问题 原文:htt ... -
js 定位 光标 到输入框的 指定位置
2008-10-02 16:20 5844//从此处摘得 http://www.experts-exch ... -
js 正则表达式 从网上找的
2008-09-25 09:01 10931、//校验IP格式 function a(ip_addres ... -
Javascript: 两个列表框之间移动数据
2008-09-11 11:41 1805http://topic.csdn.net/t/2002052 ... -
未结束的字符串常量 中文引起
2008-08-02 11:37 7036因为外部js文件中包含 ... -
javascript 框架相关资源记录
2008-06-11 14:00 1198介绍jquery的 http://www.iteye.com/ ...
相关推荐
JavaScript js基础学习 示例代码JavaScript js基础学习 示例代码JavaScript js基础学习 示例代码JavaScript js基础学习 示例代码JavaScript js基础学习 示例代码JavaScript js基础学习 示例代码JavaScript js基础...
常用javascript示例 20类343个示例文件 包含常用小游戏、applet、链接类、色彩类、格式表、表格类、数学类、窗口类、菜单类、滚动条、图片类、日期类、鼠标类、键盘类、按钮类、状态栏、属性类、loading、资料夹和...
arcgis javascript配置自己的portal URL教程示例代码,详细介绍如何使用autocasts as new PortalItem()用自己的portal 发布的webmap 地图服务
**ArcGIS JavaScript API**是Esri公司提供的一个用于在Web应用程序中创建地图和地理空间功能的强大工具。这个API允许开发者利用GIS技术,如地图显示、地理编码、空间分析等,来构建交互式的Web应用。本示例集合包含...
这个“第一个JS示例”意味着我们将探讨一个初学者级别的JavaScript代码实例,它可能是用于介绍基本概念或者展示Dev.f如何与JavaScript协同工作。 JavaScript是一种广泛使用的编程语言,主要应用于网页和网络应用的...
标题“日期时间控件 js脚本 示例2”指的是一个JavaScript示例,该示例着重于在Web页面上创建和操作日期及时间选择器。JavaScript是一种广泛使用的编程语言,尤其在网络前端开发中,它用于实现动态交互效果。在这个...
“twaver.js使用示例”这一标题表明了我们即将探讨的是一个关于twaver.js的实践应用案例。Twaver.js是一款强大的图形化建模和可视化库,主要用于创建复杂的网络拓扑图、流程图、组织结构图等。这个标题暗示我们将...
示例代码JavaScript BOM操作 示例代码JavaScript BOM操作 示例代码JavaScript BOM操作 示例代码JavaScript BOM操作 示例代码JavaScript BOM操作 示例代码JavaScript BOM操作 示例代码JavaScript BOM操作 示例代码...
而在“js脚本源码及示例.2.rar”中,可能会涵盖更高级的主题,例如闭包(closure),它是JavaScript中的一个重要特性,用于创建私有变量和函数。此外,还有函数作为一等公民的概念,即函数可以被赋值给变量、作为...
总的来说,“js个人脚本示例”是一个宝贵的资源库,无论你是初学者还是有一定经验的开发者,都可以从中受益,提升自己的JavaScript技能。通过学习和模仿这些源码,你可以加深对语言的理解,提高解决问题的能力,最终...
`trs.js` 文件可能是另一个 JavaScript 示例,它可能包含了自定义的树操作或者扩展了默认的树行为。例如,它可能包含了一些自定义的节点渲染器,用于改变节点的显示方式,或者是实现了节点的异步加载,提高大型数据...
Three.js是一个强大的JavaScript库,用于在Web浏览器中创建和展示三维图形。版本117在性能和功能上都有所优化,使得与GLTF模型的交互变得更加流畅。 首先,了解GLTF的重要性:GLTF是一种开放标准,旨在简化3D资源在...
它还包含了一个强大的场景图,用于组织和管理3D对象。通过 Three.js,你可以轻松地创建旋转的立方体、复杂的地形、动画的角色,甚至是实时渲染的3D视频。 **源码分析** Three.js 的源码分为多个模块,如核心模块、...
贪吃蛇 js游戏收集 贪吃蛇 js游戏收集 贪吃蛇 js游戏收集 javascript示例贪吃蛇 js游戏收集 贪吃蛇 js游戏收集 贪吃蛇 js游戏收集 javascript示例贪吃蛇 js游戏收集 贪吃蛇 js游戏收集 贪吃蛇 js游戏收集 javascript...
仿写百度官网首页:一个简单的 HTML、CSS 和 JavaScript 代码示例.zip 仿写百度官网首页:一个简单的 HTML、CSS 和 JavaScript 代码示例.zip 仿写百度官网首页:一个简单的 HTML、CSS 和 JavaScript 代码示例.zip ...
本示例提供了如何从 JavaScript 调用 C++ 的一个实例,展示了这两种不同语言如何协同工作。 在JavaScript中,我们通常利用WebAssembly(WASM)或者像Node.js这样的运行时环境来实现与C++的交互。WebAssembly是一种...
7. **数据绑定**:d3.js的一个关键特性是数据绑定,将数据对象与DOM元素关联,当数据变化时,对应的DOM元素也会自动更新,反之亦然。 8. **SVG**:在前端图形绘制中,d3.js通常使用SVG(可缩放矢量图形)来创建图形...
这是有一个稍微复杂的JavaScript示例,实现了一个简单的计数器功能,包括增加、减少计数、重置以及显示当前计数值。我们将使用ES6的类语法来组织代码,并利用DOM API与HTML元素进行交互。
ThreeJs文档、示例