当先锋百科网

首页 1 2 3 4 5 6 7

使用外部js程序文件的正确格式?

<script src = "index_1.js" type="text/javascript"></script> 你这个调用的就是外部js文件index_1.js。 onmouseover 和onmouseout直接写到html代码就可以。 <style> .header_1{position:absolute;top:40px;left:220px;height:auto;width:auto;color:#FFFFFF;} .d_over{background:#FF0000;} .d_out{background:#FFFFFF;} </style> <div onmouseover="this.className='d_over'" onmouseout="this.className='d_out'">333333333333333</div>

java调用js的包,使用外部js程序文件的正确格式