之前一直有关注一些HTML 5中的值得关注但少用的API或者技巧,这里给大家总结了一些,希望可以在日常工作中给大家提供指导和借鉴作用。
1.element.classList
这里简单说下,它其实是一个快速对某个元素的class进行操作的新的DOM API了,比如包括了add,remove,toggle,contains的方法,比如:
1 myDiv.classList.add(‘myCssClass’); 2 myDiv.classList.remove(‘myCssClass’); 3 myDiv.classList.toggle(‘myCssClass’); //now it’s added 4 myDiv.classList.toggle(‘myCssClass’); //now it’s removed 5 myDiv.classList.contains(‘myCssClass’); //returns true or false |
现在的浏览器支持情况为:
chrome 8.0+,ie 10,opera 11.5,safari 5.1 |
2.ContextMenu上下文菜单API
这个API是HTML 5的,用来可以生成简单的可以点击的上下文菜单,能给用户快速的选择和显示,比如:
1 <section contextmenu=”mymenu”> 2 <!– 3 For the purpose of cleanliness, 4 I’ll put my menu inside the element that will use it 5 –> 6 7 <!– add the menu –> 8 <menu type=”context” id=”mymenu”> 9 <menuitem label=”Refresh Post” onclick=”window.location.reload();” icon=”/images/refresh-icon.png”></menuitem> 10 <menu label=”Share on…” icon=”/images/share_icon.gif”> 11 <menuitem label=”Twitter” icon=”/images/twitter_icon.gif” onclick=”goTo(‘//twitter.com/intent/tweet?text=’ + document.title + ‘: ‘ + window.location.href);”></menuitem> 12 <menuitem label=”Facebook” icon=”/images/facebook_icon16x16.gif” onclick=”goTo(‘//facebook.com/sharer/sharer.php?u=’ + window.location.href);”></menuitem> 13 </menu> 14 </menu> 15 </section> |
3.element.dataset
这个API用来获得键值对的时候很有用:
比如:
1 <div id=”myDiv” data-name=”myDiv” data-id=”myId” data-my-custom-key=”This is the value”></div> |
则通过下面这些可以获得键值对,这个用在jquery mobile中很实用:
1 // 获得元素 2 var element = document.getElementById(“myDiv”); 3 4 // 获得id 5 var id = element.dataset.id; 6 7 // 获得data-my-custom-key” 8 var customKey = element.dataset.myCustomKey; 9 10 // 设置新的值 11 element.dataset.myCustomKey = “Some other value”; |
4.postMessage API
这个居然在IE 8后就支持了,可以支持在不同domain的iframe中传递消息。
1 // From window or frame on domain 1, send a message to the iframe which hosts another domain 2 var iframeWindow = document.getElementById(“iframe”).contentWindow; 3 iframeWindow.postMessage(“Hello from the first window!”); 4 5 // From inside the iframe on different host, receive message 6 window.addEventListener(“message”, function(event) { 7 if(event.origin == “http://davidwalsh.name”) { 8 // Log out the message 9 console.log(event.data); 10 11 // Send a message back 12 event.source.postMessage(“Hello back!”); 13 } 14 ]); |
5.autofocus
这个很简单了,自动focus到控件。
1 <input autofocus=”autofocus” /> 2 <button autofocus=”autofocus”>Hi!</button> 3 <textarea autofocus=”autofocus”></textarea> |
我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。
我原创,你原创,我们的内容世界才会更加精彩!
【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】
微信公众号
TechTarget
官方微博
TechTarget中国
作者
相关推荐
-
数字化转型:如何更好地利用API和微服务
API,即应用程序编程接口,它提供给应用程序、开发人员访问其它应用的能力,而又无需访问源码,无需理解内部工作机制细节;简单地说,API就是实现应用与应用连接的一种隐形的桥梁。
-
金融行业数字转型:利用API构建新IT基础
从制造业、物流业,银行业到零售业,各行各业的根基都因应用经济的兴起发生着深刻的变革。在互联网和智能手机普及化的推动下,这种现象变得司空见惯。到2021年 ,蓬勃发展的全球应用经济的预估总值将达到6.3万亿美元,相比2016年的1.3万亿美元,增长近5倍。
-
如何使用Azure API管理服务?
在云和微服务架构时代,API是数字化业务的通用语言。根据分析公司Forrester Research预测,仅在美国,API管理工具的支出将在未来5年内达到近30亿美元。
-
私有存储云如何构建?
如何构建自己的私有存储云呢?在这之前,我们要先退后一步,思考一下云计算到底意味着什么。