gpt4 book ai didi

javascript - 如何在 html 正文中使用头部脚本中定义的变量

转载 作者:太空狗 更新时间:2023-10-29 13:57:41 25 4
gpt4 key购买 nike

在下面的代码中,我怎样才能正确地将在函数 initialize() 中定义的 val testName 插入到正文的 Name 字段中?

<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script>
<script type="text/javascript">

function intialize()
{
var testName="John";
}
</script>
</head>

<body onload="intialize()">
<input id="Name" type="textbox" value=testName>
</body>
</html>

最佳答案

您可以使用文档就绪:

<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script>
<script type="text/javascript">

$(function(){
$('#Name').val('testName');
});

</script>
</head>

<body>
<input id="Name" type="textbox" value=""/>
</body>
</html>

使用 id、名称,并在文档准备好后将值设置为“testName”。

关于javascript - 如何在 html 正文中使用头部脚本中定义的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6407456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com