ExtJS中的renderTo和applyTo的差别 对applyTo和renderTo的理解和思考个人认为这两篇文章写的不够通俗。写一个简单的例子来看看最终生成了什么代码, 复制代码 代码如下: RenderTo and ApplyTo <BR>Ext.onReady(function() { <BR>var button = new Ext.Button({ <BR>renderTo: 'button', <BR>text:'OK' <BR>}); <br><br>}); <BR> sadfa