admin管理员组文章数量:1405165
I have made a form which I need to self submit automatically when page is opened. I have tried this javascript code but what it does it creates a loop where form is submitted unlimited time without stop. I need the code where form would be submitted only once when page is opened. Please give me an advice.
<form id="form" action="form.php" method="POST" >
<select id="main" name="main">
<option value="1" <?php if (@$_POST['main']=='1') {echo "selected='selected'"; } ?>>One</option>
<option value="2" <?php if (@$_POST['main']=='2') {echo "selected='selected'"; } ?>>Two</option>
</select>
</form>
<script>
document.getElementById("form").submit();
</script>
I have made a form which I need to self submit automatically when page is opened. I have tried this javascript code but what it does it creates a loop where form is submitted unlimited time without stop. I need the code where form would be submitted only once when page is opened. Please give me an advice.
<form id="form" action="form.php" method="POST" >
<select id="main" name="main">
<option value="1" <?php if (@$_POST['main']=='1') {echo "selected='selected'"; } ?>>One</option>
<option value="2" <?php if (@$_POST['main']=='2') {echo "selected='selected'"; } ?>>Two</option>
</select>
</form>
<script>
document.getElementById("form").submit();
</script>
Share
Improve this question
asked Apr 11, 2014 at 7:17
user3284181user3284181
171 silver badge5 bronze badges
2
- use cookies to store a value and check it next time – ɹɐqʞɐ zoɹǝɟ Commented Apr 11, 2014 at 7:19
- After sending post for form, U are sending this again during loading... – Andrzej Reduta Commented Apr 11, 2014 at 7:20
5 Answers
Reset to default 2You can check if the form was previously submitted with the POST superglobal
<form id="form" action="form.php" method="POST" >
<select id="main" name="main">
<option value="1" <?php if (@$_POST['main']=='1') {echo "selected='selected'"; } ?>>One</option>
<option value="2" <?php if (@$_POST['main']=='2') {echo "selected='selected'"; } ?>>Two</option>
</select>
</form>
<?php
if ( ! isset($_POST['main']) ) { // not submitted yet
?>
<script>
document.getElementById("form").submit();
</script>
<?php
}
?>
try calling on onload of document:
function submitForm()
{
document.getElementById("form").submit();
}
window.onload=submitForm;
Since page onload called only once when page is pletely loaded so it will call it once. Until you are reloading page again by code or using refresh of browser.
Below is the java script for submit form automatically you have to import jquery.min.js from http://ajax.googleapis./ajax/libs/jquery/1.7.1/jquery.min.js
after reading a td value of class error
$("td.error").each(function () {
// 'this' is now the raw td DOM element
var txt = $(this).html();
n=txt.length;
});
if(n!=0)
{
alert(n)
}
if(n==0)
{
document.forms["login"].submit();
}
my html file contain code like
<td colspan="2" class="error"><br/><i18n:text><xsl:value-of select="$message"/></i18n:text></td>
use this:
<body onload = "if (location.search.length < 1){ document.getElementById('form').submit()}">
you can try onload event in body tag
..
like <body onload="submitForm();">
and your function like
<script>
function submitForm()
{
document.getElementById("form").submit();
}
</script>
本文标签: javascriptsubmit form automatically only onceStack Overflow
版权声明:本文标题:javascript - submit form automatically only once - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744309615a2599968.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论