我的javascript / jquery代码有问题。我尝试使用javascript / jquery使用post方法创建一个表单。我的表单的问题是当你使用提交按钮时,我不知道如何获得帖子
document.querySelector("button").addEventListener("click", function () {
console.log('Click détecté ');
var form = document.createElement('form');
form.setAttribute('method', 'POST');
//form.setAttribute('action', '');
document.body.appendChild(form);
let monSelect = document.createElement('select');
let monOption = document.createElement('option');
monOption.setAttribute('value', 1);
monOption.innerText = 'choice1';
monSelect.appendChild(monOption);
let monOption2 = document.createElement('option');
monOption2.setAttribute('value', 2);
monOption2.innerText = 'choice2';
monSelect.appendChild(monOption2);
form.appendChild(monSelect);
let input = document.createElement('input')
input.setAttribute('type', "submit");
input.setAttribute('value', "envoyer");
input.setAttribute('name', "typecolonne");
form.appendChild(input);
}
);
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Quelques langages</title>
</head>
<body>
<button id="test">Ajouter un block</button>
<script src="test.js"></script>
<script src="jquery-3.3.1.min.js"></script>
</body>
</html>