上图就是X5提供的组件,x5组件获取对象this.comp(“xid”) ,
设置值 this.comp(“xid”).set({“value”:”aa”}),取值 this.comp(“xid”).get(“value”);
转为jequry对象 $(this.comp(“xid”)),这样就可以用jequry的方法了,每个js 头部都已经引入了jequry
上图就是html提供的组件,html组件获取对象this.getElmentByXid(“xid”) ,取值this.getElementByXid(“xid”).innerHTML,赋值this.getElementByXid(“xid”).innerHTML=”aa”,
转为jequry对象 $(this.getElementByXid(“xid”))
评一波