gpt4 book ai didi

javascript - 有没有办法通过另一个函数参数调用一个函数?

转载 作者:行者123 更新时间:2023-12-03 07:17:58 25 4
gpt4 key购买 nike

我有两个 JavaScript 函数。我想通过另一个函数参数调用一个函数。像这段代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
<title>Javascript Function</title>
<script language="javascript" type="text/javascript">
function fOne()
{
alert("Function One");
}
function fTwo(f_name)
{
f_name; // I want to Call fOne() here
}
</script>
</head>
<body>
<a href="#" onclick="fTwo('fOne')">Call Function</a>
</body>
</html>

这有可能吗?

最佳答案

<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
<title>Javascript Function</title>
<script language="javascript" type="text/javascript">
function fOne()
{
alert("Function One");
}
function fTwo(f_name)
{
f_name(); // I want to Call fOne() here
}
</script>
</head>
<body>
<a href="#" onclick="fTwo(fOne)">Call Function</a>
</body>
</html>

这就是你需要的一切

关于javascript - 有没有办法通过另一个函数参数调用一个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19335943/

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