function check(i){if (i==""){swf_src = "images/ban.swf"}if (i=="1"){swf_src = "images/ban1.swf"}}swf_src //此处要输出swf_src 的值!</script>鼠标事件调用check(i) 函数!然后在下面输出 swf_src! 如何写?各位帮忙!大致的意思是在下面的<script type="text/javascript"> <!-- document.write (swf_src) //最重要的是这个地方能够根据不同的鼠标事件得到不同的值!//--></script>
3 回答
梦里花落0921
TA贡献1772条经验 获得超6个赞
你可以这样写:
document.getElementById('swf_src').src='images/ban1.swf';
输出的时候同样这样获取就可以了。
不负相思意
TA贡献1777条经验 获得超10个赞
function check(i)
{
var swf_src="";
if (i=="")
{swf_src = "images/ban.swf"
}
if (i=="1")
{swf_src = "images/ban1.swf"
}
document.write(swf_src);
}
</script>
GCT1015
TA贡献1827条经验 获得超4个赞
<script language="javascript">F_flash("index.swf")</script>
<a href="swf1"
onmouseover="this.src='F_flash("this.href='swf1.swf'"'" onmouseout="'F_flash("this.href='swf2.swf'")'"> 联想</a>
<a href="swf2"
onmouseover="this.src='F_flash("this.href='swf2.swf'")'" onmouseout="'F_flash("this.href='swf2.swf'")'"> 苹果</a>
添加回答
举报
0/150
提交
取消