W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
<text onclick="{{press}}"></text>
可以簡(jiǎn)寫為:
<text @click="{{press}}"></text>
事件回調(diào)支持的寫法(其中{{}}可以省略):
<text @click="press"></text>
"fn":fn 為事件回調(diào)函數(shù)名(在?<script>
?中有對(duì)應(yīng)的函數(shù)實(shí)現(xiàn)),上例中 press 為事件回調(diào)函數(shù)。
<template>
<div class="demo-page">
<text for="{{list}}" key="{{$idx}}" onclick="handle($idx,$item)"> {{$item}}</text>
</div>
</template>
<script>
export default {
private: {
list:[1,2,3,4,5]
},
handle(idx,item,$evt){
console.log(idx)
console.log(item)
console.log($evt)
}
}
</script>
示例圖:
?<script>
?中定義的頁(yè)面的數(shù)據(jù)變量(前面不用寫 this)
<template>
<div class="demo-page">
<text for="{{list}}" key="{{$idx}}" onclick="handle(total,$item)"> {{$item}}</text>
</div>
</template>
<script>
export default {
private: {
list:[1,2,3,4,5]
total:0,
},
handle(total,num,$evt){
console.log(total)
console.log(num)
console.log($evt)
}
}
</script>
示例圖:
注意:
回調(diào)函數(shù)被調(diào)用時(shí),會(huì)在參數(shù)列表末尾自動(dòng)添加一個(gè) evt 參數(shù),通過(guò) evt 參數(shù)訪問(wèn)回調(diào)事件相關(guān)上下文數(shù)據(jù).
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: