为您找到相关结果154,133个
java解析xml之sax解析xml示例分享_java_脚本之家
private String nodeName = null; public List<People> getPeoples() { return peoples; } public SaxHandler(String nodeName) { this.nodeName = nodeName; } @Override public void startDocument() throws SAXException { // TODO 当读到一个开始标签的时候,会触发这个方法 ...
www.jb51.net/article/451...htm 2024-9-27
XMLDOM对象方法:对象属性_XML基础_脚本之家
这节点是一般的文件型态宣告,例如,节点,名为EMAIL 的节点物件会被传回。 基本语法 objDocType=xmlDocument.doctype; 说明 传回一个对象,这个属性是只读的。假如这文件不包含DTD,会传回null。 范例 objDocType = xmlDoc.doctype; alert(objDocType.nodeName); documentElement 属性 ...
www.jb51.net/article/8...htm 2024-10-3
Jquery-1.9.1源码分析系列(十一)之DOM操作_jquery_脚本之家
{ node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( table && jQuery.nodeName( this[i], ...
www.jb51.net/article/753...htm 2024-10-3
PHP局部异常因子算法-Local Outlier Factor(LOF)算法的具体实现解析_php...
foreach($tempNodes as $tempNode): //获取tempNode点的k-距离 $kDis = $this->getKDis($tempNode->getNodeName(), $kdAndKnList); if ($kDis < $tempNode->getDistance()) { $tempNode->setReachDis($tempNode->getDistance()); } else { $tempNode->setReachDis($kDis); } end...
www.jb51.net/article/2166...htm 2024-9-28
jQuery入门基础知识学习指南_jquery_脚本之家
skip = elem.nodeName.toLowerCase() === "tr"; // does the element have 0 height, 0 width, // and it's not a ? return width === 0 && height === 0 && !skip ? // then it must be hidden true : // but if it has width and height // and it's not a width > 0 ...
www.jb51.net/article/710...htm 2024-10-3
javascript实现数据双向绑定的三种方式小结_javascript技巧_脚本...
elem.command.push(attr.nodeName.slice(2)); } } } } /** * 设置数据后扫描 */ function mvSet(key, value){ data[key] = value; scan(); } /** * 数据绑定监听 */ elems[1].addEventListener('keyup', function(e){ mvSet('value', e.target.value); }, false); scan(); /** * ...
www.jb51.net/article/1079...htm 2024-9-27
asp.net基于替换模版页的形式生成静态页的方法_实用技巧_脚本之家
///配置文件节点名 ///模版页路径 ///替换数组 ///生成HTML路径 public void CreateHtml(string configPath, String configNodeName, string temPath, string[] arr,string createPath) { string fileName = string.Empty; //生成文件名 string absoCrePath = string.Empty; //生成页绝对路径 string absoTem...
www.jb51.net/article/877...htm 2024-9-28
Javascript的各种节点操作实例演示代码_javascript技巧_脚本之家
// 1:元素节点(对于元素节点,nodeName保存的始终是元素的标签名,而nodeValue的值始终是null) var element_node=document.getElementById('test'); //alert(element_node.nodeType); // 1 //alert(element_node.nodeName); // input //alert(element_node.nodeValue); // null ...
www.jb51.net/article/306...htm 2024-9-23