JS系列
lenotang
与人分享 集思广益
展开
-
js动态创建表格
我们利用JS操作DOM的能力,动态创建一张表格,可以动态增加行,删除行,复选框有全选的功能!有以下3个文件:1. dom.css.tbl { font-size: 12px; border: 1px solid #ebebee;} .cell { font-size: 12px; border-bottom: 1px solid #ebe原创 2008-08-20 21:57:00 · 3705 阅读 · 2 评论 -
js的继承实现方式
第一种 prototype 引用型原型继承语言支持:js原生支持的继承方式 构造器的的prototype属性作为类的原型 每个该类的对象都持有一个到原型的引用 当对象中的属性不存在时 可以访问原型的属性代码示例:function parent(){ this.x=10;}function child(){}child.prototype=new parent();原创 2008-08-27 21:13:00 · 3150 阅读 · 0 评论 -
广州某公司笔试题(英文)-js
JavaScript1.Please use javascript to create a class of right-Click-Menu that base on the web.2.make this class extend to a new class that can expand a second menu.3.make this class extend to a n原创 2008-08-27 22:47:00 · 2060 阅读 · 0 评论 -
javascript经典题目(不断补充中)
看过请留个言,转载请注明出处,尊重作者劳动成果,谢谢! 下面是平时布置的一些JS的小作业题目,大家可以自己动手写一下,然后参考实现。 1. 实现列表框元素的左右移动。move.htmlscript type="text/javascript">function move(a,b){ var aObj = document.getElementB原创 2008-07-06 23:58:00 · 2636 阅读 · 7 评论 -
IE Firefox通用DOM
要写出在各大主流浏览器上都兼容的JS代码,就要关注他们的区别,下是IE和FF综合考虑的通用DOM!1.document.formName.item("itemName") 问题说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用docum转载 2008-10-18 17:22:00 · 3376 阅读 · 0 评论