摘要: 今天打算写一个函数,根据给定的DOM对象或者id值,找到其所有后代节点(包括子节点的子节点)中的input type=="text"的元素,代码如下: 1 /** 2 * [clearUserInput 根据元素的ID找到其子节点(包括子节点的子节点)中的input元素并且type="text",将其value设为空] 3 * @param {[type]} id [DOM对象或者字符串表示元素的id值] 4 * @return {[type]} [description] 5 */ 6 function clearUserInput... 阅读全文
posted @ 2012-08-09 20:00 水中月明 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 在Node-API里面对二者的解释是:__filenameThe filename of the code being executed. This is the resolved absolute path of this code file. For a main program this is not necessarily the same filename used in the command line. The value inside a module is the path to that module file.Example: runningnode example... 阅读全文
posted @ 2012-08-08 20:18 水中月明 阅读(5525) 评论(0) 推荐(0) 编辑