它使用 PHP、JQuery 和 HTML,但问题在于使用 JQuery 和 HTML 的按钮:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Aircraft Fleet</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" href="./css/flick/jquery.ui.all.css">
<script src="./jquery-ui.js"></script>
<script src="./ui/jquery.ui.core.js"></script>
<script src="./ui/jquery.ui.widget.js"></script>
<script src="./ui/jquery.ui.button.js"></script>
<script>
$(function() {
$( "input[type=submit], a, button" )
.button()
.click(function( event ) {
event.preventDefault();
});
});
</script>
</head>
<body>
<form action="new_aircraft_fleet_process.php" method="post">
<table>
<tr><td class="forms">Registration: </td><td><input maxlength="6" type="text" name="registration" size="15"/></td></tr>
<tr><td></td><td><input type="submit" value="Insert Submit"/></td></tr>
</table>
</form>
</body>
</html>
该按钮不起作用。如果你推它,没有任何反应。我想要什么按钮做的形式。