如何在jquery mobile中关闭Ajax导航.因为我会上传图片



>我在表单定义上使用data-ajax="false"关闭Ajax导航时遇到问题我在哪里设置这个。

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>textinput</title>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>
</head>
<body>
    <form name="form1" method="post" action="PageUploadToMySQL2.php" data-ajax="false" enctype="multipart/form-data">
    ชื่อรถ : <input type="text" name="txtcarNAME"><br>
    ราคา: <input type="text" name="txtcarPRICE"><br>
    Picture : <input type="file" name="filUpload"><br>
    <input name="btnSubmit" type="submit" value="Submit">
    </form>
</body>

是我的代码。

您可以在 jQuery Mobile 开始工作之前更改属性。

参考这个,看看ajaxFormsEnabled属性,如果需要,ajaxLinksEnabled:http://demos.jquerymobile.com/1.0a3/#docs/api/globalconfig.html

相关内容

最新更新