我想根据浏览器显示视频意味着如果Chrome中有一个打开的页面,那么chrome.mp4应该播放等等。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="jquery-1.11.2.min.js" type="application/javascript" language="javascript"></script>
<script>
var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
// Opera 8.0+ (UA detection to detect Blink/v8-powered Opera)
var isFirefox = typeof InstallTrigger !== 'undefined'; // Firefox 1.0+
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
// At least Safari 3+: "[object HTMLElementConstructor]"
var isChrome = !!window.chrome && !isOpera; // Chrome 1+
var isIE = /*@cc_on!@*/false || !!document.documentMode; // At least IE6
if(isFirefox==true)
{
$("#my").html("<embed src='mozilla.mp4'></embed>");
}
</script>
</head>
<body>
<div id="my"></div>
</body>
</html>
这是我目前的代码。 。它无法正常工作
答案 0 :(得分:0)
Modernizr.js检测哪些浏览器可以使用什么类型的属性等等。