Aug 30

关于flash的注意事项

杂物箱
1.为什么我会在ff3 windows版下的wmode transparent(透明) 或者不透明(opaque)模式下看到虚线框环绕着的flash
解决办法加样式

<style type="text/css" media="screen">
object { outline:none; }
</style>


2.firefox下面,有关swfobject和input type='radio'的诡异现象
如果代码如下:
就会发生很诡异的现象,每次刷新页面。radio的checked项会切换
导致此问题的原因是 调用2次swfobject.embedSWF 与 标签 label 有着很神秘的关系

.............代码..................
<div id="chart-select-map"></div>
<div id="chart-select-date"></div>
<input type="radio" checked="checked" value="0" name="discoveryType" id="duijitu"><label for="duijitu">A</label>
    <input type="radio" value="1" name="discoveryType" id="xianxingtu"><label for="xianxingtu">B</label>
<script type="text/javascript">
  swfobject.embedSWF("Chart.swf", "chart-select-date", "470", "230", "9.0.0");
  swfobject.embedSWF("map.swf", "chart-select-map", "315", "203", "9.0.0");
</script>

解决办法就是去掉label标签,具体原因不得而知,可能遇到这样情况的人也少之又少。


tags:

to "关于flash的注意事项"

Leave a Reply