在网页中加入swf文件
网页中加入的swf文件 我想用一个按钮 控制他的播放和停止
我这样写对吗
function play(){
if(a.onclick){
$("id").Play();
}else{
$("id").Rewind();
}
}
-------------------------
我不会写
------解决方案--------------------
function play()
{
$("id").Play();
}
<p ><input id="Button1" type="button" value="ssssssssss" onclick="play()"/></p>
停止的同上