HTML5中的拼写检查
程序员文章站
2022-06-23 15:43:12
在html5 中,多了不少标签和属性,其中一个的是
contenteditable属性,可以让用户在页面上编辑属性,比如:
<...
在html5 中,多了不少标签和属性,其中一个的是
contenteditable属性,可以让用户在页面上编辑属性,比如:
<!doctype html><html>
<body>
this is an editable paragraph.
this is not an editable paragraph.
</body>
</html>
设置contenteditable为true,用户可以编辑中的内容了,
甚至可以加入拼写检查,比如:
spellcheck="true"
<!doctype html>
<html>
<body>
<p contenteditable="true" spellcheck="true" >this blog is for progammers(programmers)
</body>
</html>
则如果拼写错误,则会下划线指出输入错误
摘自 jackyrong
上一篇: Android 数据库加密 SQLCipher使用方法
下一篇: 营口11月好玩的地方大全
推荐阅读
-
小强的HTML5移动开发之路(34)——jQuery中的选择器
-
phpStudey2010中进入phpMyAdmin出现"无法在发生异常时创建会话,请检查PHP"的解决办法
-
字中字效果的实现【html5实例】_html5教程技巧
-
详解HTML5中canvas支持触摸屏的签名面板的示例代码
-
PHP实现将HTML5中Canvas图像保存到服务器的方法
-
html5中localStorage本地存储的简单使用
-
详解HTML5中垂直上下居中的解决方案
-
HTML5中视频音频的使用详解
-
用HTML5 Canvas API中的clearRect()方法实现橡皮擦功能
-
使用HTML5 Canvas API中的clip()方法裁剪区域图像