侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

js html5 css3 嗅探

2023-12-10 星期日 / 0 评论 / 0 点赞 / 24 阅读 / 489 字

识别html5: if(window.applicationCache){alert("Html5issupported!");}else{alert("Html5isforbidden!");} 识

识别html5:

if (window.applicationCache) {	alert("Html5 is supported!");} else {	alert("Html5 is forbidden!");}

识别css3:

var style = document.createElement("div").style;if(style.textShadow == ""){	alert("Css3 is supported!");}else{	alert("Css3 is forbidden!");}


广告 广告

评论区