我的html文件中有一堆数据在页面加载时加载。有一堆图形数据填充页面并减慢页面加载速度。我希望只在按下播放按钮后才能加载此信息。
这就是它在页面内的开始......
<script type="text/ecmascript">
<![CDATA[
var refresh_timeout;
/**
* getURL is a proprietary Adobe function, but it's simplicity has made it very
* popular. If getURL is undefined we spin our own by wrapping XMLHttpRequest.
*/
if (typeof getURL == 'undefined') {
getURL = function(url, callback)....
.
.
.
.
现在,我有这段代码应用了我需要的信息,但我希望将这个ecmascript编程到位于下面块中的onClick函数。
<div class="box-content" style="overflow-x: hidden; padding-top: 0; position: relative; height: 400px;">
<div class="dim-wrapper">
<div class="dim-overlay">
<button class="btn btn-default btn-transparent text-large" onclick="loadBandwidthData()" style="line-height: 0;"><i class="icon icon-play-circle"></i></button>
</div>
</div>
这怎么可能?谢谢!