我有一个嵌入在 DIV 中的 flash 对象。现在我想在该 div 上方使用一个链接('a' 标签),以便用户能够重新加载该 flash 拨号程序,或者更具体地说,它包含在其中的 div 标签(我无法以任何方式更改 flash 文件)。
我试过使用下面的这个 JS 函数,但它不起作用(点击“重新加载”链接时不重新加载 div 和内容。
<div class="userProfile">
<script type="text/javascript">
function refreshDialer(){
document.getElementById("dialerDiv1").contentWindow.location.reload(true);
}
</script>
<a href="javascript: refreshDialer()">Reload</a>
<div id="dialerDiv1">
<embed type="application/x-shockwave-flash" wmode="opaque"
src="http://dummysite.com"
width="301"
height="401"
id="popUpSwf"
name="popUpSwf"
quality="high"
border="none"
allowscriptaccess="always"
pluginspage="http://www.adobe.com/go/getflashplayer"
scale="noscale"
menu="false"
flashvars="#" />
</div>
</div>
我在这里做错了什么?
谢谢