Does IE7 support HTML5 data tag?

2019-07-06 22:56发布

I'm willing to use data tag as below.

<div data-color="#1337c"></div>

I use jquery to fetch($("div").data("color");) and store($("div").data("color", "red");) as well as manipulate data.

  • Will IE7 support above tag ?
  • What is the browser requirement for HTML5 ?

Thanks

2条回答
再贱就再见
2楼-- · 2019-07-06 22:59

To my understanding, data attributes are not actually HTML5 features, but rather their use became standardized in HTML5. IE 5.5 (from what I remember) was actually the first browser to support pseudo attributes, but don't quote me on that :v

查看更多
SAY GOODBYE
3楼-- · 2019-07-06 23:22

To answer the real question: jQuery.data works as expected in IE7 .. and IE6. (No HTML5 or official "data attribute" support required.)

IE7 will happily keep any attribute supplied in the HTML and expose it as such in the DOM. It doesn't matter if it is called data-foo or foo-data. I believe this is technically against the HTML4 specification, but it is the behavior of every major browser I know.

Do be aware, however, that data("foo") and attr("data-foo") have different semantics.

查看更多
登录 后发表回答