HTML5在IE下如何实现?

HTML5在IE下如何实现?,第1张

HTML5在IE下实现方法

一:Coding JavaScript

<!--[if lt IE9]>

<script>

(function() {

if (!

/*@cc_on!@*/

0) return

var e = "abbr, article, aside, audio, canvas, datalist, details, dialog, eventsource, figure, footer, header, hgroup, mark, menu, meter, nav, output, progress, section, time, video".split(', ')

var i= e.length

while (i--){

document.createElement(e[i])

}

})()

</script>

<![endif]-->

二、使用Google的html5shiv包(推荐)

<!--[if lt IE9]>

<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>

<![endif]-->

两种方法都需要进行css的初始化:

article,aside,dialog,footer,header,section,footer,nav,figure,menu{display:block}

apache自己就有,还需要去配置么?

windows下,直接下载安装,默认配置即可。

linux下,我习惯用centos,你直接yum

install

httpd

php

php-mysql,按y搞定一切。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6136036.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-16
下一篇 2023-03-16

发表评论

登录后才能评论

评论列表(0条)

保存