我需要一個Javascript或Ajax來加載文件夾中的SWF文件。Javascript動態加載SWF
/swfdir
|_ test_1.swf
|_ test_2.swf
|_ test_3.swf
.
.
.
|_ test_50.swf
一個文件夾中有多少個swf文件。我想通過替換現有的一個來逐個加載它們。每個閃存應播放10秒,然後它必須替換爲下一個swf文件。
請給我一個工作片段。
UPDATE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>SWFObject 2 static publishing example page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
function loadSWFObjects() {
var i=1;
for(i=1;i<=50;i++) {
document.getElementById("mySWF").innerHTML =
"<object type=\"application/x-shockwave-flash\" data=\"SWFObjects/test_"i".swf\" width=\"300\" height=\"120\">";
}
}
</script>
</head>
<body>
<div>
<object id="mySWF" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="300" height="120">
<object type="application/x-shockwave-flash" data="SWFObjects/test_1.swf" width="300" height="120">
</object>
</div>
</body>
</html>
在頁面加載後如何調用該函數?此代碼是不是爲我工作:(
任何幫助確實
感謝
添加代碼示例...請幫助... – 2011-06-09 03:23:40
查看[setInterval](https://developer.mozilla.org/en/DOM/window.setInterval)。 – jswolf19 2011-06-09 03:56:16