微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Selector in the Dojo

1. dom selector

In dojo/dom.js,dojo offers dojo.byId() to get the dom element node.

dom.byId = function(id,doc){
			// inline'd type check.
			// be sure to return null per documentation,to match IE branch.
			return ((typeof id == "string") ? (doc || win.doc).getElementById(id) : id) || null; // DOMNode
		};

2. query API

dojo/query.js provides the query API to get the NodeList.

var query = queryForEngine(defaultEngine,NodeList);
function queryForEngine(engine,NodeList){
		var query = function(/*String*/ query,/*String|DOMNode?*/ root){
			// summary:
			//		Returns nodes which match the given CSS selector,searching the
			//		entire document by default but optionally taking a node to scope
			//		the search by. Returns an instance of NodeList.
			if(typeof root == "string"){
				root = dom.byId(root);
				if(!root){
					return new NodeList([]);
				}
			}
			var results = typeof query == "string" ? engine(query,root) : query ? query.orphan ? query : [query] : [];
			if(results.orphan){
				// already wrapped
				return results;
			}
			return new NodeList(results);
		};
		query.matches = engine.match || function(node,selector,root){
			// summary:
			//		Test to see if a node matches a selector
			return query.filter([node],root).length > 0;
		};
		// the engine provides a filtering function,use it to for matching
		query.filter = engine.filter || function(nodes,root){
			// summary:
			//		Filters an array of nodes. Note that this does not guarantee to return a NodeList,just an array.
			return query(selector,root).filter(function(node){
				return array.indexOf(nodes,node) > -1;
			});
		};
		if(typeof engine != "function"){
			var search = engine.search;
			engine = function(selector,root){
				// Slick does it backwards (or everyone else does it backwards,probably the latter)
				return search(root || document,selector);
			};
		}
		return query;
	}
3. widget selector

We can find thebyId() method in the dijit/registry.js

byId: function(/*String|Widget*/ id){
			// summary:
			//		Find a widget by it's id.
			//		If passed a widget then just returns the widget.
			return typeof id == "string" ? hash[id] : id;	// dijit/_WidgetBase
		},

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐