美文网首页
用Jquery更新vue模型

用Jquery更新vue模型

作者: SuSuSoo | 来源:发表于2022-03-09 20:20 被阅读0次

    用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);
    });
    

    相关文章

      网友评论

          本文标题:用Jquery更新vue模型

          本文链接:https://www.haomeiwen.com/subject/dchxdrtx.html