Created
September 17, 2019 06:41
-
-
Save bookiu/c27a3ba030b911db2edd55b5d3b70756 to your computer and use it in GitHub Desktop.
创建form表单
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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