Skip to content

Instantly share code, notes, and snippets.

@bookiu
Created September 17, 2019 06:41
Show Gist options
  • Save bookiu/c27a3ba030b911db2edd55b5d3b70756 to your computer and use it in GitHub Desktop.
Save bookiu/c27a3ba030b911db2edd55b5d3b70756 to your computer and use it in GitHub Desktop.
创建form表单
let action = ""
let data = {
"key": "value"
}
let form = document.createElement("form")
form.method="POST"
form.action = action
form.style = "display: none;"
for (k in data) {
let v = data[k]
let input = document.createElement("input")
input.type = "hidden"
input.name = k
input.value = v
form.appendChild(input)
}
document.querySelector('body').appendChild(form)
form.submit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment