下面的代码,当点击播放时能跳出MediaPlayer播放器,但在谷歌,火狐中就不行了,但我用其他网站在谷歌,火狐中测试是可以出现播放器的:这个网站里,那该怎么弄?<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div id="video"></div>
<a href="#" onclick="playvedio()">播放</a>
<script type="text/javascript" language="javascript">
 function playvedio(){
 document.getElementById("video").innerHTML = "<object id='WindowsMediaPlayer' classid='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6'"
+ "width='427' height='330' type='application/x-oleobject'>"
+ "<param name='URL' value='1.wmv'/>"
+ "<param name='UIMode' value='full' />"
+ "<param name='AutoStart' value='true' />"
+ "<param name='Enabled' value='true' />"
+ "<param name='enableContextMenu' value='false' />"
+ "<param name='WindowlessVideo' value='true' />"
+ "</object>";
 }
</script>
</body>
</html>