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.
|
<!--index.wxml-->
|
|
<view>
|
|
<view>请输入第一个数字</view>
|
|
<input type="number" bindinput="num1Input"/>
|
|
</view>
|
|
<view>
|
|
<view>请输入第二个数字</view>
|
|
<input type="number"bindinput="num2Input"/>
|
|
</view>
|
|
<button bindtap="compare">比较</button>
|
|
<view>
|
|
<text wx:if="{{result}}">比较结果:{{result}}</text>
|
|
</view>
|
|
|
|
|