为什么不能调用 P()函数,显示 “PPPPPPPPP”讲讲为什么??
于娜 2006-01-24 11:57:01 为什么不能调用 P()函数,显示 “PPPPPPPPP”讲讲为什么??
----------------------------------------------------------
my.html 页
<script src="my.js"></script>
-------------------------------------------------------
my.js 页
function Main()
{
document.write("<script src='my2.js'></script>");
}
Main();
P();
-----------------------------------------------------
my2.js 页
function P()
{
document.write("PPPPPPPPPPPPPP");
}