0

オブジェクトが呼び出されるたびに、日付が自動的に更新されますobject(amount,date,type)ここにコードがあります

var Transaction = function(amount, type) {
    this.amount = amount;
    this.type = type;
    this.date = (function() {
        var d = new Date();
        var minutes = d.getMinutes();
        var month = d.getMonth() +1;
        if (minutes<10) {
            return (d.getDate() + "/" + month + "/" + d.getFullYear() + " " + d.getHours() + ":" + "0" + minutes);
        } else {
            return (d.getDate() + "/" + month + "/" + d.getFullYear() + " " + d.getHours() + ":" + minutes);
        }
    })();

HTML入力フィールドの値とラジオボタンからのamount値を受け取るように設定するにはどうすればよいですか? type純粋なJSを使いたい

4

1 に答える 1

0

入力フィールドが渡された場合、その値が使用されます。それ以外の場合は、渡された値がそのまま使用されます

this.amount = amount.value || amount;
this.type = type.value || type;
于 2013-10-31T21:30:38.117 に答える