为什么下面代码保存(预览)后会出现不同结果呢?
<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的代码肯定不会自己变化的
用记事本打开编辑看看!