整数未附加到表单操作网址

时间:2019-04-24 03:22:14

标签: javascript html5 forms url

我正在尝试将生成的整数附加到表单操作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;
    }

任何帮助都会很棒:)

0 个答案:

没有答案