W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
avm.js在提供數(shù)據(jù)綁定和狀態(tài)管理驅(qū)動(dòng)界面更新的基礎(chǔ)上,同時(shí)支持document以及類似jquery方式使用$函數(shù)獲取和操作真實(shí)DOM。
操作獲取DOM元素
<template>
<view class='content'>
<input id='num' type='number' autofocus/>
</view>
</template>
<script>
export default {
name: 'api-test',
apiready(){
var num = $('#num').value;
// var num = document.getElementById('num').value;
console.log('input value: ' + num);
}
}
</script>
<style>
.content{
height: 100px;
}
</style>
獲取DOM元素并調(diào)用組件API
<template>
<view class='content'>
<list-view id='list' >
<cell>
<text>{item.title}</text>
</cell>
</list-view>
</view>
</template>
<script>
export default {
name: 'api-test',
apiready(){
var _data = ['一', '二', '三', '四'];
var listview = $('#list');
listview.load({
data: _data
});
}
}
</script>
<style>
.content{
height: 100px;
}
</style>
其中,listview.load接口請(qǐng)參考list-view組件api文檔。
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)系方式:
更多建議: