所以即时尝试使用此页面中的表单,
http://www.javascript-coder.com/files/calculation/cakeform.html
但我没有在同一页面显示结果,而是希望将值发布到php页面上(通过提交按钮)
我尝试了下面的代码,但没有捕获任何值,既没有从div,也没有提取按钮。任何帮助将不胜感激。感谢。
<?php
if(!isset($_POST['search']))
exit("Error. You have to get here through the search page");
$destination = "";
switch($_POST['search')
{
case "127234":
$destination = "127234.com";
break;
case "806654":
$destination = "806654.com";
break;
default: //
$destination = "oops.com";
break;
}
header("Location: ".$destination);
?>
答案 0 :(得分:0)
您的表单包含
<form id="cakeform" onsubmit="return false;">
&#13;
将其更改为
<form id="cakeform" action="filename.php">
&#13;