html總結£¨ÖУ©
ÓÐ關html´°體¿ò¼ÜµÄ問題£¬Èç¹ûÏëÒª實現ÔÚÒ»個畫ÃæÖзָ體£¬並ÇÒͨ過點擊ÆäÖеÄÒ»個´°體£¬鏈½Ó內ÈÝÖÁͬһ個畫ÃæÖеÄÁíÒ»個´°體¡£¾ÍÐèҪʹÓÃ<frameset>與<frame>µÄ標籤¡£ÒÔÏÂÊÇ幾個ÎÒ×öµÄСÀý×Ó¡£簡記Ö®¡£
poem.html
<html>
<head>
<title>hello poet</title>
</head>
<frameset cols="179,*">
<frame name = "windows1" src="1.html" mce_src="1.html" scrolling="auto">
<frame name = "windows2" src="2.html" mce_src="2.html" >
</frameset>
</html>
1.html
<html>
<head>
<title></title>
</head>
<body>
<pre>
<center>
<a href = "jingyesi.html" target = "windows2">靜ҹ˼</a>
<a href = "guasong.html" target = "windows2">¹ÏËÉ</a>
</center>
</pre>
</body>
</html>
jingyesi.html
<html>
<head>
<title>靜ҹ˼</title>
</head>
<body>
<pre>
<center>
´²Ç°Ã÷Ò¹¹â£¬ÒÉËÆµØÉÏ˪¡£
舉頭ÍûÃ÷Ô£¬¾Æ幹湯賣無¡£
</center>
</pre>
</body>
</html>
guasong.html
<html>
<head>
<title>¹ÏËÉ</title>
</head>
<body>
<pre>
<center>
¾ÍÊÇÒ»個Éñ經²¡¡£
</center>
</pre>
</body>
</html>
2.html
<html>
<head>
<title></title>
</head>
<body>
<pre>
<center>
歡Ó來讀詩¡£
</center>
</pre>
</body>
</html>
ÏëÒªÔÚ畫ÃæÉÏǶÈëÁíÒ»個畫Ãæ£¬¼´¸¡動´°體£¬則ÐèҪʹÓÃ<iframe>標籤¡£ÒÔÏÂÊÇÒ»個СµÄʾÀý¡£
ex.html
<html>
<head>
<title>¸¡動´°¿Ú</title>
</head>
<
Ïà¹ØÎĵµ£º
HTMLÏà¶Ô·¾¶Óë¾ø¶Ô·¾¶
ÔÚÍøÒ³ÖÆ×÷µÄ¹ý³ÌÖУ¬ÉÙ²»Á˸ú·¾¶´ò½»µÀ£¬±ÈÈ磬°üº¬Ò»¸öÎļþ£¬²åÈëÒ»¸öͼƬµÈ£¬Óë·¾¶¶¼ÓйØÏµ£¬Èç¹ûʹÓÃÁË´íÎóµÄÎļþ·¾¶£¬¾Í»áµ¼ÖÂÒýÓÃʧЧ(ÎÞ·¨ä¯ÀÀÁ´½ÓÎļþ£¬»òÎÞ·¨ÏÔʾ²åÈëµÄͼƬµÈ)¡£³õѧÕß¿ÉÄÜ»á¸Ðµ½À§»ó£¬ÏÂÃæÎÒ¾ÍÏêϸµÄ½éÉÜÒ»ÏÂÏà¶Ô·¾¶Óë ......
SEO£¨ËùËÑÒýÇæÓÅ»¯£©£¬ÔÚÉè¼ÆÍøÒ³µÄʱºòÒ²ÊÇÒª¿¼ÂDZȽ϶àµÄÄÚÈÝ£¬ÒòΪÓÅ»¯ÊÇÒª´Ó»ù´¡¿ªÊ¼×öµÄ¡£ÕâÑù¿ÉÒÔÊ¹ÍøÕ¾¸üÈÝÒ×±»ËÑË÷ÒýÇæ“Àí½â”£¬´Ó¶øÌá¸ßÍøÕ¾ÔÚËÑË÷ÒýÇæµÄÅÅÃû¡£ÍøÂçÉϺܶàSEOÑо¿ÈËÔ±½»Á÷ÈÏΪ£º
È¨ÖØ·ÖÖµÅÅÁС¡
ÄÚ²¿Á´½ÓÎÄ×Ö£º10·Ö¡¡¡¡
±êÌâtitle£º10·Ö¡ ......
HTMLÖÐSelect²»ÓÃDisabledʵÏÖReadOnlyµÄÁíÀàʵÏÖ.
<select onbeforeactivate="return false" onfocus="this.blur()" onmouseover="this.setCapture()" onmouseout="this.releaseCapture()">
<option>1</option>
</select> ......
ÏÂÃæÊÇÒ»¸ö¹ýÂËhtmlÔªËØµÄ³ÌÐò£¬Ò²Ðí¶Ô´ó¼ÒÓеã°ïÖú£¡
/**
* filter all html element.
* For example:<a href="www.sohu.com/test">hello!</a>
* The filter result is :hello!
  ......