html 5のspellcheckプロパティ(スペル、文法チェック)

3522 ワード

 1 <!DOCTYPE html> 
 2 <html> 
 3 <head> 
 4 <meta charset="utf-8" /> 
 5 <title>spellcheck     </title> 
 6 </head> 
 7 <body> 
 8 <style>
 9 .ac{border:1px solid #ff7300;width:200px;height:100px;}
10 </style>
11 <pre>
12 1.<b>        ,      ,               。</b>
13 2.spellcheck="true"、'false'、"",  true "" ,    。。
14 【         :  input      ,    readonly    ( readonly=""),          。】
15 3.    :
16    1.   text  input  , input   text  input  , input="password"  (  :     ,           ,               )。
17    2.textarea  
18    3.spellcheck  ,html5           ,          ,   contenteditable="true"     ,    。( div   。)
19 4.          IE10   
20 </pre>
21 
22 <p>  <textarea spellcheck="true" >absolute testK</textarea> </p> 
23 <p>    <textarea spellcheck="false"></textarea> </p> 
24 <div contenteditable="true" spellcheck class="ac">div absolute testK</div>
25 <p>readonly="":<input readonly=""/></p>
26 <p><input type="password" spellcheck="true"/></p>
27 </body> 
28 </html>