You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<view>
|
|
<text>请输入第一个数字:</text>
|
|
<input type="number" bindinput="num1Input" />
|
|
</view>
|
|
<view>
|
|
<text>请输入第二个数字:</text>
|
|
<input type="number" bindinput="num2Input" />
|
|
</view>
|
|
<button bindtap="compare">比较</button>
|
|
<view>
|
|
<text wx:if="{{ result }}">比较结果: {{ result }}</text>
|
|
</view>
|