加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

dojo.byId and dijit.byId

发布时间:2020-12-16 22:07:25 所属栏目:百科 来源:网络整理
导读:dojo.byId(String id) This function is a synonym for document.all.id in IE or document.getElementById(id) in standard DOM. So you can say: dojo. byId ( "breadbox" ) . style . fontSize = "72pt" ; If document.getElementById() works in all mod

dojo.byId(String id)

This function is a synonym for document.all.id in IE or document.getElementById(id) in standard DOM. So you can say:

dojo. byId ( "breadbox" ). style. fontSize = "72pt";

If document.getElementById() works in all modern browsers,why use this? Sadly,bugs persist in Internet Explorer which make getElementById() unstable in some common scenarios. Also,dojo.byId() is easier to type.

dijit.byId(String id)

Because of the almost-identical spelling,this method is commonly mixed up with dojo.byId(String id). Here's the difference: dijit.byId() returns a Dijit widget instance - technically,an instance of dijit._Widget or one of its subclasses like dijit.Toolbar or dijit.TreeNode.

So here's the way to remember it:

  • If you need a DOM Node,use dojo.byId. You need a DOM node anytime you call a standard browser function,change a standard property,etc.
  • If you need a widget,use dijit.byId. From it you can access all of the attributes,methods and extension points listed in Part 2.

Or for you who think in terms of functions (e.g. LISP programmers?):

var myDomNode = dojo.byId("foo");
var myWidget = dijit.byId("foo");
console.debug(myDomNode == myWidget.domNode);  // true
console.debug(dijit.byNode(myDomNode) == myWidget); // true

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读