当前位置: 移动技术网 > IT编程>网页制作>Html5 > What does idl attribute mean in the W3C html5 standard document?

What does idl attribute mean in the W3C html5 standard document?

2018年09月13日  | 移动技术网IT编程  | 我要评论

修龙阶txt全集下载,长江刀鱼图片,电陶炉的危害

the 'idl' comes from the web idl spec:

 

this document defines an interface definition language, web idl, that can be used to describe interfaces that are intended to be implemented in web browsers. web idl is an idl variant with a number of features that allow the behavior of common script objects in the web platform to be specified more readily. how interfaces described with web idl correspond to constructs within ecmascript execution environments is also detailed in this document.

 

content attributes are the ones that appear in the markup:

 

<p id="myp" class="example"></p>in the above code id and class are attributes. usually a content attribute will have a corresponding idl attribute, for example doing this from javascript:

 

document.getelementbyid('myp').classname = 'example'is equivalent to setting the class content attribute.

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网