suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript – So übergeben Sie den an die aktuelle Anweisung gebundenen Dom in der Vue-Anweisung

<td contenteditable="true" @input="inputEvent()"></td>

Benötigt das Dom-Element in inputEvent()中传入td;

过去多啦不再A梦过去多啦不再A梦2752 Tage vor468

Antworte allen(5)Ich werde antworten

  • PHP中文网

    PHP中文网2017-05-19 10:13:27

    https://vuejs.org/v2/guide/ev...

    Antwort
    0
  • 高洛峰

    高洛峰2017-05-19 10:13:27

    为什么要传呢,在事件对象里面不是有吗

    Antwort
    0
  • 淡淡烟草味

    淡淡烟草味2017-05-19 10:13:27

    <body>
      <p id="app">
        <button @click='add'>按钮</button>
      </p>
    </body>

      new Vue({
        el: "#app",
        methods: {
          add(e) {
            console.log(e.target)
          }
        }
      })
    

    是这种意思吗??

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-19 10:13:27

    没有参数的话直接在接收方法中定一个event就可以了
    function (event) {}
    如果有其他参数,那就用inputEvent($event,other)

    Antwort
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-19 10:13:27

    // 传一个event
    @input="inputEvent($event)" 
    
    inputEvent(e) {
    console.log(e.path[0]. outerHTML)
    }

    Antwort
    0
  • StornierenAntwort