0
我有我的模板如下:Vue公司2 - 讓clossest元素與類
<tbody>
@foreach ($countries as $country)
<tr class="parent">
<td><input class="form-control" type="text" value="{{ $country->name }}"></td>
<td>{{ $country->show ? 'Yes' : 'No' }}</td>
<td><input class="form-control" type="number" value="{{ $country->order }}"></td>
<td>
<button class="btn btn-primary">{{ $country->show ? "Hide" : "Show" }}</button>
<button class="btn btn-success" @click="updateCountry">Update</button>
</td>
</tr>
@endforeach
</tbody>
這是Vue公司代碼:
import Vue from 'vue'
let App = new Vue({
el: '#app-container',
data: {
},
methods: {
filterCountries() {
},
updateCountry(event) {
console.log(event.target.parentElement);
}
}
})
到目前爲止,我可以得到一個參考父母(這是包含按鈕的td
)。是否有可能得到類父(類似於jquery)最接近的元素,然後獲取包含在父元素中的輸入元素的值?
感謝您的資源豐富的答案:)。我剛開始學習Vue,並且我正在一步一步:) – Sasha