在jsp中,如果存在一个隐藏变量,我们可以在js中执行此操作:

document.getElementById('hiddenVarId').setValue = 'xxx';


什么是document.getElementById().setValue = 'xxx';的extjs等效项

最佳答案

Ext.get('hiddenVarId').set({value: 'xxx'});


这是利用ExtJS方法set()的另一种可能性。这样,如果您现在或以后也需要在Ext.Element上一次设置多个属性。

http://dev.sencha.com/deploy/dev/docs/?class=Ext.Element

关于extjs - 如何在extjs语法中执行:document.getElementById(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5148145/

10-13 09:36