gpt4 book ai didi

javascript - 定义函数时如何在javascript函数中初始化参数

转载 作者:数据小太阳 更新时间:2023-10-29 05:03:53 26 4
gpt4 key购买 nike

我在 javascript 中定义了一个带有参数的函数,但我不知道如何初始化它的参数,任何人都可以帮助我。代码如下

<br/>Enter a number:
<input type="text" id="txt1" name="text1">
<p>Click the button to see the result</p>
<button onclick="myFunction(5)">show result</button>
<br/>
<p id="demo"></p>
<script>
function myFunction(param) {
alert(param);
var z = param;
var y = document.getElementById("txt1").value;
var x = +y + +z;
document.getElementById("demo").innerHTML = x;
}
</script>

我遇到的问题是:如果我将参数作为 <button onclick="myFunction(5)">show result</button> 发送给函数它有效,但如果我不发送任何参数,它就不起作用,结果是 NaN。现在我想知道如何在定义函数时初始化参数?正如我们在 php function myFunction(param=0) 中所做的那样

最佳答案

使用 param = param || 0; 喜欢

function myFunction(param) {
param = param || 0;
console.log(param);
var z = param;
var y = document.getElementById("txt1").value;
var x = +y + +z;
document.getElementById("demo").innerHTML = x;
}

上面的语句是说设置 paramparam 如果它不是假的(undefined, null, false),否则设置为0

关于javascript - 定义函数时如何在javascript函数中初始化参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30692481/

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