javascriptÖÐDateºÍstringµÄ»¥×ª
jsÊÇÈõÀàÐ굀 µ«ÊÇijЩʱºò Äã»¹ÕæÐèÒªÒ»¸ödate
±ÈÈç˵ Ö¸¶¨Ê±¼ä ÄÇô3¸öСʱºóÊÇʲôʱ¼ä
ÕâÑùµÄº¯Êý ×Ô¼ºÐ´¾ÍÂé·³ÁË
ת³ÉDate
var hs = Date.parse('03/02/2009 22:10');
var d = new Date(hs);
document.write(d);
document.write('<br/>');
var h=3.5;
var arrh=String(h).split('.');
document.write(Number(arrh[1])*6);
document.write('<br/>');
d.setHours(d.getHours()+Number(arrh[0]));
d.setMinutes(d.getMinutes()+Number(arrh[1])*6);
document.write(d);
²Î¿¼
http://www.cnblogs.com/east-liujie/archive/2006/10/21/535784.html
http://www.happyshow.org/view.php?id=145
Ïà¹ØÎĵµ£º
Summary ×ܽá
When web pages or applications begin to feel slow, analyzing assets as they come over the wire and profiling scripts while they are running allows you to focus your optimization efforts where they are needed most.
µ±ÍøÒ³»òÓ¦ÓóÌÐò±äÂýʱ£¬·ÖÎ ......
The jLayout JavaScript library provides layout algorithms for laying out components. A component is an abstraction; it can be implemented in many ways, for example as items in a HTML5 Canvas drawing or as HTML elements. The jLayout library allows you to focus on drawing the individual components i ......
±¾ÎļòÒª½éÉÜJavaScriptÖÐconfirm,alert,promptµÄÓ÷¨,Ï£Íû´ó¼Òѧϰ¹ý³ÌÖÐÄܵõ½Ò»Ð©Æô·¢¡£
window.confirm ²ÎÊý¾ÍÖ»ÓÐÒ»¸ö¡£ÏÔʾÌáʾ¿òµÄÐÅÏ¢¡£°´È·¶¨,·µ»Øtrue£»°´È¡Ïû·µ»Øfalse¡£
< SCRIPT> var bln = window.confirm("È·¶¨Âð?"); alert(bln) < /SCRIPT> window.alert²ÎÊý£¬Ö»ÓÐ ......
¡ö´ò¿ª¡ö
<input name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=button value=´ò¿ª>
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
¡öÁí´æÎª¡ö
<input name=Button onClick=document.all.WebBrowser.ExecWB(4,1) typ ......