日期:2014-05-16 浏览次数:20662 次
function PlaySound(file)
{
var str = '<embed id="read_sound" autostart="true" src=file></embed>';
document.getElementById('read_sound').outerHTML = str;
}
<!DOCTYPE HTML>
<html>
<head>
<meta charset="gbk" />
<title></title>
<style>
div {
border:1px solid red;
}
</style>
</head>
<body>
<div id="test"></div>
<script type="text/javascript">
function PlaySound(file)
{
var str = '<embed id="read_sound" autostart="true" src="'+ file +'"></embed>';
document.getElementById('test').innerHTML = str;
}
PlaySound('test.swf')
</script>
</body>
</html>