gpt4 book ai didi

javascript - 如何在提示时检索值?

转载 作者:行者123 更新时间:2023-12-02 21:27:46 25 4
gpt4 key购买 nike

我正在学习 JavaScript,我必须使用提示并输入

enter image description here

我必须在字段上检索此值,但我没有得到此值。我的代码不完整。

enter image description here

我的 HTML

<body>
<h1>Exercise 8</h1>
<label>Hours : <input type="text" id='h' /></label>
<script src="script.js"></script>
</body>

我的JS

var hours = parseInt(prompt('Enter your hours please : '));

objet.addEventListener('load', main);


function main(){

hours = document.getElementById('h').value = hours;
alert(hours);
}

var hours = parseInt(prompt('Enter your hours please : '));

objet.addEventListener('load', main);


function main(){

hours = document.getElementById('h').value = hours;
alert(hours);
}
<html>

<head>

<script src="Thing.js" type="text/javascript">
</script>
<link rel="stylesheet" type="text/css" href="Main.css">
</head>

<body>
<h1>Exercise 8</h1>
<label>Hours : <input type="text" id='h' /></label>
<script src="script.js"></script>
</body>


</html>

谢谢...

最佳答案

只需检查用户输入的值并将其插入到输入元素中即可。

var hours = parseInt(prompt('Enter your hours please : '));

if (hours != null) {
document.getElementById("h").value = hours
alert(hours)
}
<h1>Exercise 8</h1>
<label>Hours : <input type="text" id='h' /></label>
<script src="script.js"></script>

**更新 - 使用函数。 **

var hours = parseInt(prompt('Enter your hours please : '));

if (hours != null) {
main();
}

function main(){
document.getElementById('h').value = hours;
alert(hours);
}

关于javascript - 如何在提示时检索值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60696893/

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