Javascript»ñµÃ×ÓÒ³Ãæ±äÁ¿µÄÖµ
Àý£º
page.htmlÒ³Ãæ£º
<html>
<head>
<title>This is a test</title>
</head>
<script type="text/javascript">
var count;
</script>
<body>
<iframe id="child" src="childPage.html" src="childPage"></iframe>
</body>
</html>
Ò³ÃæÀïǶÌ×ÁËÒ»¸öchildPage.htmlÒ³Ãæ¡£
ÔÚpageÖеÄcountÈçºÎ»ñµÃchildPageÒ³ÃæµÄchildCountֵĨ£¿
child.childCountÕâÖÖ·½·¨Ã²ËƲ»ÐÐ……
»¹ÊÇ»»Ò»ÖÖ˼·°É£¬ÈÃchildPageÖеÄchildCountµÈÓÚpageÒ³ÃæµÄcount¡£ÈçÏ£º
<html>
<head>
<title>This is a test(child)</title>
</head>
<script type="text/javascript">
var childCount = parent.count;
<script>
<body>
<iframe id="child" src="childPage" src="childPage"></iframe>
</body>
</html>
ÕâÑùÔÚpageÒ³ÃæÖ±½Ó¾Í¿ÉÒÔ»ñµÃchildPageÒ³ÃæµÄchildCountµÄÖµ¡£
Ïà¹ØÎĵµ£º
1.ÏÈ»ñµÃselect£º
var s = document.getElementById("selectYear");
2.¿ÉÒÔÏÈÒÆ³ýÉÏ´ÎÌí¼ÓµÄoption£¨ÕâÀïҪעÒ⣬ÿ´Îɾ³ýµÄ¶¼ÊǵÚÒ»¸öÔªËØ£¬ÒòΪɾһ¸öÉÙÒ»¸ö£©£º
var l = s.options.length;
for(var i=0;i<l;i++){
s.options.remove(0);
}
3.Ìí¼ÓÐÂÔªËØ£¨iÊÇ×Ô¼º¶¨ÒåµÄ£¬¸ù¾Ý× ......
Çø·ÖXHTMLÓëHTMLµÄ±êÖ¾£º
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
ǰÕßÊÇXHTML£¬ºóÕßÊÇHTML
ä¯ÀÀÆ÷µÄ¸ßºÍ¿í£º
XHTML£º
document.document ......
<html>
<head></head>
<script>
function ShowMenu(bMenu) {
document.all.idFinder.style.display = (bMenu) ? "none" : "block"
document.all.idMenu.style.display = (bMenu) ? "block" : "none"
idML.className = (bMenu) ? "cOn" : "cOff"
idRL.className = (bMenu) ? "cOff" : "cOn" ......
ʹÓà Cookies¡¡¡¡ÎÒÃÇÒѾ֪µÀ£¬ÔÚ document ¶ÔÏóÖÐÓÐÒ»¸ö cookie ÊôÐÔ¡£µ«ÊÇ Cookie ÓÖÊÇʲô£¿“ijЩ Web
Õ¾µãÔÚÄúµÄÓ²ÅÌÉÏÓúÜСµÄÎı¾Îļþ´æ´¢ÁËһЩÐÅÏ¢£¬ÕâЩÎļþ¾Í³ÆÎª Cookie¡£”—— MSIE °ïÖú¡£Ò»°ãÀ´Ëµ£¬Cookies ÊÇ CGI
»òÀàËÆ£¬±È HTML ¸ß¼¶µÄÎļþ¡¢³ÌÐòµÈ´´½¨µÄ£¬µ«ÊÇ JavaScript Ò²Ìá¹ ......