关于这段代码我想让他打开的时候就运行
1.我希望下面的这个MYDIV的JS代码能打开这个网站的时候就自动运行,需要怎么写?
2.如果我要设置成一天的第一次打开这个页面自动运行这个JS代码,这天的其他时间打开这个站不自动运行,又要怎么写?
在线等……
=================================================================
JScript code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Facebox Demo</title> <script src="facefiles/jquery-1.2.2.pack.js" type="text/javascript"></script> <link href="facefiles/facebox.css" media="screen" rel="stylesheet" type="text/css" /> <script src="facefiles/facebox.js" type="text/javascript"></script> <script type="text/javascript"> jQuery(document).ready(function($) { $('a[rel*=facebox]').facebox() }) </script> </head> <body onload="#mydiv"> <p><a href="#mydiv" rel="facebox">View DIV with id="mydiv" on the page</a></p> <div id="mydiv" style="display:none"> <Iframe src="http://www.baidu.com" width="800" height="600" scrolling="no" frameborder="0"></iframe> <a href="http://newave.nbut.cn">Click here to go to Newave Studio</a> </div> </body> </html>