在淘汰赛中选择文件时如何提交表格?

时间:2013-06-04 12:04:33

标签: javascript jquery knockout.js

我需要处理成功页面。但它会重定向到另一个页面。

这是我的表格:

<form enctype="multipart/form-data" data-bind="submit: $root.updateImage">
<input type="file" id="my-element1" data-bind='event:{click: $parent.submitImages}'  name="commonsMultipartFile" multiple /></td>
</form>

淘汰赛代码:

我的回答是未定义的。

self.submitImages = function(data,event)
{
    self.updateImage(this);
};

self.updateImage = function(formElement,event)
{
   $.ajax({
      url: "Style.json",
      //Post method is used
      type: "post",
      //pass the data
      dataType: 'json',
      success : function(response) {
      console.log(response);
      }
   });
};

0 个答案:

没有答案