在JavaScript中的带返回值的函数如何在html页面中输出呢请问,急急急,我是新手
例如<html><scripttype="txt/javascript">fuctiontext(){return"yes"}</script><body>/*----我...
例如
<html>
<script type="txt/javascript">
fuction text()
{
return "yes"
}
</script>
<body>
/*----我想在p标签中输出函数的返回值---*/
<p>text()</P>
</body>
</html>
望解答,谢谢 展开
<html>
<script type="txt/javascript">
fuction text()
{
return "yes"
}
</script>
<body>
/*----我想在p标签中输出函数的返回值---*/
<p>text()</P>
</body>
</html>
望解答,谢谢 展开
1个回答
展开全部
<HTML>
<HEAD>
<TITLE></TITLE>
<script>
function text()
{
return "yes";
}
window.onload=function()
{
document.getElementsByTagName("p")[0].innerText=text();
}
</script>
</HEAD>
<BODY>
<p>text()</p>
</BODY>
</HTML>
<HEAD>
<TITLE></TITLE>
<script>
function text()
{
return "yes";
}
window.onload=function()
{
document.getElementsByTagName("p")[0].innerText=text();
}
</script>
</HEAD>
<BODY>
<p>text()</p>
</BODY>
</HTML>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询