Skip to content

Instantly share code, notes, and snippets.

@msh01
Last active February 12, 2018 06:52
Show Gist options
  • Save msh01/db2924fec184898b522ae40e2df2e72a to your computer and use it in GitHub Desktop.
Save msh01/db2924fec184898b522ae40e2df2e72a to your computer and use it in GitHub Desktop.
jquery fileupload通过按钮点击来手动开启上传
data.context = $('<button/>').text('Upload')
.appendTo(document.body)
.click(function () {
data.context = $('<p/>').text('Uploading...').replaceAll($(this));
data.submit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment