<script type="text/javascript">
function openwindow(){
var mymessage=confirm("Are you open the window?");
if(mymessage=true)
{window.open('http://www.imooc.com','_blank,height=400,width=500,menubar=no,toolbar=no');}
}
</script>
if(mymessage=true)改为if(mymessage==true)。"="是赋值符,“==”是判断符
{window.open('http://www.imooc.com','_blank','height=400,width=500,menubar=no,toolbar=no');}