[求助]音乐提示问题?
以下代码错在哪?
我要表达的意思是
"假如这项publink为空,那么网页背景音乐就响起"
<% if publink = "" then %>
<bgsound src="sound/msg.wav" loop="-1">
<% end if %>
但是上面代码运行后的,不管这项publink是不是为空,都会响起音乐.
这是哪儿写的不对?请各位老师帮帮忙.
[此贴子已经被作者于2006-11-25 10:57:38编辑过]
<% if publink = "" then %>
<bgsound src="sound/msg.wav" loop="-1">
<% end if %>
但是上面代码运行后的,不管这项publink是不是为空,都会响起音乐.
这是哪儿写的不对?请各位老师帮帮忙.
如果不管这项publink是不是为空,都会响起音乐的话
就表示IF的判断被通过了
检查一下 publink 的值是否真的为空。。。
<%
publink="111"'这样试试 看音乐会不会有
if publink = "" then
%>
<bgsound src="sound/msg.wav" loop="-1">
<% end if %>