<body><div id="div10"><h3 v-if="result<0">成績尚未公布</h3><h3 v-else-if="result < 60"> d <h3><h3 v-else-if="result < 80"> c <h3><h3 v-else-if="result < 90"> b <h3><h3 v-else> a </h3><p>當(dāng)前成績:{{result}}</p><button v-on:click="changeResult">隨機(jī)分?jǐn)?shù)</button></div></body><script>var var_div10 = new Vue({el: "#div10 ",data: {result: -1},methods: {changeResult: function () {this.result = Math.round(Math.random() * 100);}}});</script>
為什么result 只有<60的時(shí)候才打印d,其他條件的a b c都不輸出
慕娘9325324
2018-08-07 06:05:39