-2

它使用 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>

该按钮不起作用。如果你推它,没有任何反应。我想要什么按钮做的形式。

4

2 回答 2

0

1.您没有包含jquery.js在您的来源中。

src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"
  1. 你应该设置你的输入 tpyebutton

  2. 你应该使用提交()。

    $("form").submit(function() {

    });

于 2013-01-04T19:24:14.887 回答
0

您首先不包括 jQuery Source ..

jQuery UI 需要 jQuery 作为依赖项。

var $elems = $("input[type=submit], a, button");

$elems.button();

$elems.on('click', function(event) {
    event.preventDefault();
});​
于 2013-01-04T19:25:19.337 回答