日期:2014-05-16 浏览次数:20347 次
function get_lastmonth()
{
var getabc = document.getElementById("lastmonth").innerHTML;
if(confirm("确认操作 "+getabc+" 吗?"))
{
$.ajax({
type: "POST",
dataType:"json",
url: "action.php",
data: "do=apply&getabc="+getabc,
});
location.href="action.php";
} else {
return;
}
}
<script>
function get_lastmonth()
{
var getabc = document.getElementById("lastmonth").innerHTML;
if(confirm("确认操作 "+getabc+" 吗?"))
{
document.getElementById("test").value=getabc;
return true;
} else {
return false;
}
}
</script>
<form action='action.php' method='post' onsubmit="return get_lastmonth()">
<span id='lastmonth'>20130106</span><br>
<input type='hidden' id='test' name='test'>
<input type='submit'>
</form>