Page({ num1: 0,// 保存第一个数字 num2: 0,//保存第二个数字 num1Input: function (e) { this.num1 = Number(e.detail.value) }, num2Input: function (e) { this.num2 = Number(e.detail.value) }, data: { result: '' }, compare: function () { var str = '' if (this.num1 > this.num2) { str = '第一个数大' } else if (this.num1 < this.num2) { str = '第二个数大' } else { str = '两数相等' } this.setData( { result: str } ) } })