在Javascript文件中插入HTML组件(JS文件)

时间:2011-05-04 05:56:42

标签: javascript

我的javascript文件中有以下代码

containers: {price: null, volume: null},
buildDOM: function () {
var container = $(this.id);
this.containers.price = new Element('div', {id: 'priceGraph', style: 'width: 100%; height: 240px;'});
this.containers.volume = new Element('div', {id: 'volumeGraph', style: 'width: 100%; height: 200px;'});
container.insert(this.containers.price);
container.insert(this.containers.volume);
}

我想在两个div(PriceGraph和VolumeGraph)之间有两个文本输入(HTML Components)。

整个源代码可以在这里找到

http://www.humblesoftware.com/finance/source(在HumbleFinance.js内)

请告诉我是否可以在它们之间插入HTML组件)

0 个答案:

没有答案