0

我有这个简单的格式化程序功能:

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没有定义!

4

1 回答 1

2

问题是函数声明中的冒号

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

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

应该可以正常工作

于 2013-03-26T22:43:27.827 回答