gpt4 book ai didi

javascript - 无法获取我的 javascript 函数?

转载 作者:行者123 更新时间:2023-12-02 18:52:53 24 4
gpt4 key购买 nike

我有这个简单的格式化函数:

function Forma(x, y): {
var handler = function(e) {
document.getElementById(x).innerHTML = Number(this.value * 100).toLocaleString() + " Centimes";
};
document.getElementById(y).onchange = handler;
document.getElementById(y).onkeyup = handler;
}

并将其命名为formatter.js

现在,我尝试在 HTML 页面上使用它,在开头加载它:

<script src="path/to/formatter.js"></script>

加载成功!但当我放置它时:

<input id="price">
<script>
Forma("hhh", "price");
</script>
<h1 id="hhh" > </h1>

控制台显示Forma未定义!

最佳答案

问题出在函数声明中的冒号

function Forma(x, y) {
...
}

// or
Forma = function(x, y) {
...
}

应该可以正常工作

关于javascript - 无法获取我的 javascript 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15648792/

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