当前位置: 代码迷 >> ASP >> 为啥在<marquee></marquee>中无法使用图片呢
  详细解决方案

为啥在<marquee></marquee>中无法使用图片呢

热度:540   发布时间:2012-09-04 14:19:30.0
为什么在<marquee></marquee>中无法使用图片呢?
为什么下面代码保存(预览)后会出现不同结果呢?
<marquee direction=up scrollamount=2 onmouseover="this.stop();" onmouseout="this.start();" width=100 height=100><img src='logo.gif' width="200" height="200"><img src='logo.gif' width="200" height="200"></marquee>

保存(预览)后的代码:
<marquee direction=up scrollamount=2 onmouseover="this.stop();" onmouseout="this.start();" width=100 height=100></marquee>
<img src='logo.gif' width="200" height="200"><img src='logo.gif' width="200" height="200">



这是因为什么?请高手指教!

------解决方案--------------------
应该可以的。
------解决方案--------------------
应该是可以的,只不过属性和值写法规范点,值加上双引号

C# code

<marquee direction="up" scrollamount="2" onmouseover="this.stop();" onmouseout="this.start();" width="100" height="100">
    <img src="logo.gif"  width="200" height="200"/>
    <img src='logo.gif' width="200" height="200"/>
</marquee>

------解决方案--------------------
应该可以的呀.
------解决方案--------------------
绝对可以的! html的代码肯定不会自己变化的

用记事本打开编辑看看!