请编辑脚本高手帮忙看下 为什么网页传上之后不正常显示.asf和.swf===高分求助===
发布网友
发布时间:2023-05-18 06:10
我来回答
共4个回答
热心网友
时间:2023-09-25 04:38
你需要有网站服务器才行。网页html要放到网站服务器上。
conten11/000.asf 是服务器上的相对URL地址.
if 句有错。
试 if ( M_paused()){。。。}
热心网友
时间:2023-09-25 04:39
我只能说你基本知识不扎实。。。空间里的东西是不支持插入脚本的。。。
热心网友
时间:2023-09-25 04:39
看不懂你的代码,下面这句肯定有语法错误吧:
if ()
下面这样的VB语法,JS好像不支持吧:
<script language="javascript" FOR="window" EVENT="onload">
if(document.location.protocol == "file:")
{
// AsxFileName = "conten11/000.asf";
}
MediaPlayer.URL = AsxFileName;
setInterval("Mtime()",1000);
</script>
应该修改为:
<script language="javascript">
window.onload=function(){
if(document.location.protocol == "file:")
{
// AsxFileName = "conten11/000.asf";
}
MediaPlayer.URL = AsxFileName;
setInterval("Mtime()",1000);
}
</script>
热心网友
时间:2023-09-25 04:40
你需要有网站服务器才行。网页html要放到网站服务器上。下面这样的VB语法,JS好像不支持吧:
<script language="javascript" FOR="window" EVENT="onload">
if(document.location.protocol == "file:")
{
// AsxFileName = "conten11/000.asf";
}
MediaPlayer.URL = AsxFileName;
setInterval("Mtime()",1000);
</script>
应该修改为:
<script language="javascript">
window.onload=function(){
if(document.location.protocol == "file:")
{
// AsxFileName = "conten11/000.asf";
}
MediaPlayer.URL = AsxFileName;
setInterval("Mtime()",1000);
}
</script>