如何获得ExtJS中嵌入HTML中的元素,取值或设值?
varwin=newExt.Window({tittle:'窗体',width:1000,height:500,tbar:[{xtype:'button',height:...
var win = new Ext.Window({
tittle: '窗体',
width: 1000,
height: 500,
tbar:[{
xtype: 'button',
height: 20,
width: 50,
action: 'pp',
text: 'Print'
}],
html: '<iframe id="report" src="page/reportPrint/print1.html" style="height: 100%;width: 100%;""></iframe>',
resizable: true,
modal: true,
closable: true,
maximizable: true,
minimizable: true
});
在Window里面嵌入了一个html页面,html中有一些文本框,如何获取这些文本框的值或者设置值? 展开
tittle: '窗体',
width: 1000,
height: 500,
tbar:[{
xtype: 'button',
height: 20,
width: 50,
action: 'pp',
text: 'Print'
}],
html: '<iframe id="report" src="page/reportPrint/print1.html" style="height: 100%;width: 100%;""></iframe>',
resizable: true,
modal: true,
closable: true,
maximizable: true,
minimizable: true
});
在Window里面嵌入了一个html页面,html中有一些文本框,如何获取这些文本框的值或者设置值? 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
2个回答
展开全部
按照extjs思路,可以根据id和样式表来取
给你个例子你研究一下
initComponent: function () {
this.callParent(arguments);
this.on("viewready", function () {//在所有组件已经渲染成功时调用
this.addclickevent();
}, this, {single:true,})
}
addclickevent:function(){
var kk = Ext.query(".mkiconbutton", false, this.getEl().dom);//这句话是查询样式表,你改成你html中需要取得样式表就行,到这里你就可以控制取值或赋值
for(var i=0;i<kk.length;i++){
this.mon(kk[i],"click",this.mkitemclick,this);
}
},提交回答
给你个例子你研究一下
initComponent: function () {
this.callParent(arguments);
this.on("viewready", function () {//在所有组件已经渲染成功时调用
this.addclickevent();
}, this, {single:true,})
}
addclickevent:function(){
var kk = Ext.query(".mkiconbutton", false, this.getEl().dom);//这句话是查询样式表,你改成你html中需要取得样式表就行,到这里你就可以控制取值或赋值
for(var i=0;i<kk.length;i++){
this.mon(kk[i],"click",this.mkitemclick,this);
}
},提交回答
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询