x
 
<!DOCTYPE html>
<html>
<body>
<h3>��ʾ��δ��� VIDEO Ԫ��</h3>
<p>������ť������ VIDEO Ԫ�أ���Ԫ�ؽ����� .ogg �ļ���ʽ��ӰƬ��</p>
<button onclick="myFunction()">��һ��</button>
<p id="demo"></p>
<script>
function myFunction()
{
var x = document.createElement("VIDEO");
x.setAttribute("width", "320");
x.setAttribute("height", "240");
x.setAttribute("controls", "controls");
x.setAttribute("src", "/i/movie.ogg");
document.body.appendChild(x);
document.getElementById("demo").innerHTML = "<b>ע�ͣ�</b>IE �� Safari ��֧�� .ogg �ļ���ʽ����ֻ��һ�����ӡ�����ʹ������������������У���Ӧ���� video Ԫ����ʹ�� source Ԫ�ء�";
}
</script>
</body>
</html>