蓝雨 发表于 2010-1-5 15:45:33

解决部分非IE内核浏览器短消息无声音的BUG PHPWind了论坛

由于PW使用短消息代码是针对IE的,而不是 W3C 标准代码,因而出现了兼容性问题。解决方法很简单,打开 require 目录(别弄成根目录)下的 header.php ,PW7.0以上版本找到:
<bgsound src=\\\"$imgpath/$stylepath/msg.wav\\\" border=\\\"0\\\">
替换为:
<div style=overflow:hidden;width:0;float:left><embed src=$imgpath/$stylepath/msg.wav width=0 height=0 AutoStart=true type=application/x-mplayer2></embed></div>
PW7.0以下版本找到:
<bgsound src=\\\"$imgpath/$stylepath/msg/msg.wav\\\" border=\\\"0\\\">
替换为:
<div style=overflow:hidden;width:0;float:left><embed src=$imgpath/$stylepath/msg/msg.wav width=0 height=0 AutoStart=true type=application/x-mplayer2></embed></div>
**** Hidden Message *****
页: [1]
查看完整版本: 解决部分非IE内核浏览器短消息无声音的BUG PHPWind了论坛