gpt4 book ai didi

javascript - 运行 Javascript 卸载以运行计算

转载 作者:行者123 更新时间:2023-11-30 15:51:17 26 4
gpt4 key购买 nike

我有以下代码,当输入“cage_linear_feet”中的值发生变化时运行 JS 计算并且工作正常。

当输入中已有一个值时,如何在页面加载时运行它?

请参阅下面的代码。

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"> </script>
<script type="text/javascript">

function updatesum() {
document.form.cage_estimate.value = (document.form.cage_linear_feet.value) * 100;
};

</script>
</head>
<body>

<form name="form" action="index.php" method="post" autocomplete="off">

<input type="text" name="cage_linear_feet" id="cage_linear_feet" value="10" onchange="updatesum()">

<br>

<input type="text" class="estimate" name="cage_estimate" id="cage_estimate" disabled>

</body>
</html>

谢谢,

约翰

最佳答案

window.onload = function(){
// code to call on load
}

关于javascript - 运行 Javascript 卸载以运行计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39290994/

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