0
考慮下面的代碼段:關於計算的值中的ExtJS
<script type="text/javascript" src="/<Computed Value>/samples/home.js"></script>
在上述例子中,如何「計算值」得到填充。我的意思是在extjs中做這件事的一般方法是什麼?
在此先感謝。
考慮下面的代碼段:關於計算的值中的ExtJS
<script type="text/javascript" src="/<Computed Value>/samples/home.js"></script>
在上述例子中,如何「計算值」得到填充。我的意思是在extjs中做這件事的一般方法是什麼?
在此先感謝。
看看Ext.String.format函數:http://docs-origin.sencha.com/extjs/4.1.3/#!/api/Ext.String-method-format。它應該做你需要的東西:
var cls = 'my-class',
text = 'Some text';
var s = Ext.String.format('<div class="{0}">{1}</div>', cls, text);
// s now contains the string: '<div class="my-class">Some text</div>'