JavaScriptÖк¯ÊýµÄ´«µÝ
ÿ´ÎÓÃGoogleµÄ
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(num);
});
¾Í¾õµÃºÜˬ,´«¸öº¯Êý¹ýÈ¥,onclickʼþ¾ÍÄÜ´¥·¢,ÒÔÇ°×Ô¼ºÒ²ÏëдÀàËƵŦÄÜ,¼¸´Î¶¼Ã»¸ã³öÀ´,½ñÌìËæÊÖдÁ½ÐдúÂë·´¶ø¸ã¶¨ÁË.
ʾÀýÈçÏÂ
function test1(a, b) {
b();
}
function test2() {
var ttt = 'hello';
test1(1, function() { alert(ttt); })
}
ÔËÐÐtest2(),µ¯³ö¾¯¸æ"hello"
Ïà¹ØÎĵµ£º
scrollHeight: »ñÈ¡¶ÔÏóµÄ¹ö¶¯¸ß¶È¡£
scrollLeft:ÉèÖûò»ñȡλÓÚ¶ÔÏó×ó±ß½çºÍ´°¿ÚÖÐÄ¿Ç°¿É¼ûÄÚÈݵÄ×î×ó¶ËÖ®¼äµÄ¾àÀë
scrollTop:ÉèÖûò»ñȡλÓÚ¶ÔÏó×¶ËºÍ´°¿ÚÖпɼûÄÚÈݵÄ×¶ËÖ®¼äµÄ¾àÀë
scrollWidth:»ñÈ¡¶ÔÏóµÄ¹ö¶¯¿í¶È
offsetHeight:»ñÈ¡¶ÔÏóÏà¶ÔÓÚ°æÃæ»òÓɸ¸×ø±ê offsetParent ÊôÐÔÖ¸¶¨µÄ¸¸×ø±êµÄ¸ß¶È
offsetL ......
Ч¹ûÑÝʾµØÖ·£ºhttp://www.phzzy.org/code/drag/google_drag.html
ÍÏקÔÀí£º
¹ØÓÚÍÏקµÄ»ù´¡£¬¿ÉÒԲο¼ÕâƪÎÄÕ£¬½²µÃ·Ç³£²»´í¡£
http://www.sohotx.com/mzk/index.php/1007/ArticleContent/298.html
ÆäʵÔÀíºÜ¼òµ¥£¬¾ÍÊÇ°Ñ°ó¶¨Èý¸öʼþ£ºonmousedown , onmousemove , onmouseup¡£
ÔÚÊó±êµãÏÂʱ(onmousedown)° ......
Ò»¡¢ ÔÚ×Ô¶¨ÒåcssÑùʽÖÐÊäÈë </style> ½«css´úÂë¶Î½áÊø£»
¶þ¡¢ ÔÚ </style> ºóÃæÊäÈë <script type="text/javascript" language="javascript">js´úÂë</script>£»
Èý¡¢ ±£´æÅäÖþͿÉÒÔÓÐÄãÊäÈëµÄjsÌØЧÀ²¡£
ÓÉÓÚ±¾È˶Ôjs²»ÊǺÜÊìϤ£¬ÕâÀï¾Í²»Ð´Àý×ÓÁË£¬Ï£Íû ......
Ò»¸ö·Ç³£ÊµÓõÄjavascript¶ÁдCookieº¯Êý
function GetCookieVal(offset)
//»ñµÃCookie½âÂëºóµÄÖµ
{
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function SetCookie(name, v ......