当点击 button 的时候 只弹出 a, 没弹出b,
我用的是opensuse11 linux apach2 服务器<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>
  <meta http-equiv="content-type"
    content="application/xhtml+xml; charset=utf-8" />
  <script type='text/javascript'>function a(){ var oIframe = document.getElementById("myframe");    var oDoc = oIframe.contentWindow || oIframe.contentDocument; alert("a");
    if (oDoc.document) {
        oDoc = oDoc.document;
    }
    alert("b");
    oDoc.body.style.backgroundColor = "#00f";
}
</script>
</head>
<body><iframe name="myframe" id="myframe" src ="http://www.google.co.uk" width="100%" height="300">
  <p>Your browser does not support iframes.</p>
</iframe><button onclick='a()'>get</button>
</body>
</html>