Vue js:取得輸入的字串並顯示,也取得字串的長度
P粉785522400
P粉785522400 2024-02-21 15:54:16
0
1
472

我想取得字串輸入並顯示它,以及字串的字元數。

需要幫助才能實現。

<section id="app">
      <h2>Learn  Vue Works</h2>
      <input type="text" @input="saveInput">
      <button @click="setText">Set Text</button>
    <br>

   <p>{{ qry }} {{ message }}</p>

====app.js======================================

const app = Vue.createApp({
  data() {
    return {
      message: 'Vue is great!',
      qry: 'Query String : ',
      currentSearchInput: '',
    };
  },
  methods: {
    setText() {
      this.message = this.currentUserInput;
    },
   saveInput(event) {
      this.currentUserInput = event.target.value;
   },
  },
});

app.mount('#app');

提前致謝。 ###
P粉785522400
P粉785522400

全部回覆(1)
P粉788765679

使用 v-model 將 currentSearchInput 綁定到輸入。您根本不需要 saveInput


{{currentSearchInput}} {{currentSearchInput.length}}
setText() {
      this.message = this.currentSearchInput;
    },

您的程式碼有 currentSearchInputcurrentUserInput。打字錯誤?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!