我正在尝试将生成的整数附加到表单操作url的后面,并且对为什么不附加的内容感到困惑。
这是我的html:
<form id="form1" action="title-processing.php" method="post" onSubmit="submitFunc()">
<ol id="spawnList">
</ol>
<button type="submit" name="submit">Save</button>
</form>
这是我的JS:
var number = getCount(document.getElementById('spawnList'), false)
function submitFunc()
{
var formAction = document.getElementById("form1").getAttribute("action");
window.location.href= formAction + "?id=" + number;
}
任何帮助都会很棒:)