代码编辑器:
x
1
<h3>访问 EMBED 元素范例演示</h3>
2
<embed id="myEmbed" src="/static/media/html/helloworld.swf">
3
<p>点击按钮获取嵌入的 flash 文件URL地址</p>
4
<p id="demo"></p>
5
<button onclick="myFunction()">尝试一下</button>
6
<script>
7
function myFunction(){
8
var x = document.getElementById("myEmbed").src;
9
document.getElementById("demo").innerHTML = x;
10
};
11
</script>
12