已采纳回答 / 偌颜宁
true写错了,window.open('b','_blank','width=400,height=500,menubar=no,toolbar=no')这句话中的引用变量地址不要加引号,把b的引号去掉就可以了
2014-11-27
function hidetext()
{
var mychar = document.getElementById("con").style.display="none";
}
function showtext()
{
var mychar = document.getElementById("con").style.display="block";
}
{
var mychar = document.getElementById("con").style.display="none";
}
function showtext()
{
var mychar = document.getElementById("con").style.display="block";
}
2014-11-26