用Jquery更新vue模型

2022-03-09  本文已影响0人  SuSuSoo

用Jquery更新vue模型

$('.button').on('click', function() {
  
  // Find inputs
  const input = $("input[name='title']");

  // Set value
  input.val('some new value');

  // Create native event
  const event = new Event('input', { bubbles: true });

  // Dispatch the event on "native" element
  input.get(0).dispatchEvent(event);
});
上一篇 下一篇

猜你喜欢

热点阅读