1

我的网站上有一个带有 3 个下拉框的表单。用户从每个选项中选择一个选项并点击提交后,数据将发布到外部 php 文件,该文件对 MySQL 进行查询,然后重新加载页面并发布结果。我想让这更花哨 - 使用 ajax 而无需重新加载页面。问题是我完全没有问题。我搜索实习生并尝试了几个示例,但没有结果。这是代码:

HTML表格:

<form name="showprice" id="showprice" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<select name="country" id="country">
<option value="">Select Country</option>
</select>
<select name="industry" id="industry" onchange="setOptions(document.showprice.industry.options[document.showprice.industry.selectedIndex].value);">
<option value="">Select Industry</option>
</select>
<select name="quality" id="quality">
<option value=" " selected="selected">Select country and industry first.</option>
</select>
<input value="Submit" type="submit" name="submit" id="submit">
</form>

<script  type="text/javascript">
var frmvalidator = new Validator("showprice");
frmvalidator.addValidation("country","req","Please select country");
frmvalidator.addValidation("industry","req","Please select industry");
frmvalidator.addValidation("quality","req","Please select quality");
</script>

注意:我已删除选项以节省空间。

外部view.prices.php:

它在另一个文件夹中,现在我用

<?php include('includes/view.prices.php'); ?>

现在的代码是:

if(isset($_POST['submit'])) {
include ('config.php');
$con1 = mysql_connect($server, $username, $password);
if (!$con1)
{
die(<b>Could not connect: </b> . mysql_error());
}
echo'<br /><br /><table id="myTable" class="tablesorter" align="center">
<thead>
<tr>
**some table headers (8 columns)**
</tr>
</thead>
<tbody>';

$cou = $_POST['country'];
$ind = $_POST['industry']; 
$qua = $_POST['quality'];

$sql = "SELECT * FROM $ind WHERE quality=$qua AND desig=$cou ORDER BY id ASC" or  die('<b>Data Insert Error:</b> ' . mysql_error());

echo("<tr>
**Some table results with 8 variables taken from the MySQL database**
</tr>");

if (!mysql_query($sql,$con1))
{
die('Error: ' . mysql_error());
}
}
echo    '</tbody>
</table>';
mysql_close($con1);
}}
else {
echo '<div class="grid_9">
<p><b>TIP:</b> Pick country, industry and quality from the drop-down above and hit "Submit" button to view results.</p>
</div>';
}

任何帮助高度赞赏。

4

5 回答 5

1

我一直为此使用 jQuery。

$(function() {
    $('#showprice').sumbit(function() {
    $.post('includes/view.prices.php', $(this).serialize(),function(data) {  
    $('#idoftag').html(data);
    })
    });

})
于 2012-05-02T21:02:38.640 回答
1

我会调查 jQuery。您将要禁用默认处理程序:

e.preventDefault();

然后使用 jQuery,您可以执行以下操作:

   $.ajax({
        type: 'POST',
        url: '',
        data: $("#showprice").serialize(),  dataType: 'json',
        success: function(data){
            if( data['status'] == 'success' )
            {           
              // Do stuff here
            } 
        }
    });

该代码假定您将返回一个 json 编码的字符串。哪个 jQuery 可以毫无问题地处理。

于 2012-05-02T20:55:15.820 回答
0

在朋友的帮助下,我设法做到了:

1)在文件的头部,表单添加:

<script type="text/javascript" src="path-to-jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var working = false;
$('#id-of-form').submit(function(e){
e.preventDefault();
if(working) return false;
working = true;
//$('#submit').val('Sending..');
$.post('path-to-php-file-to-be-executed',$('#id-of-form').serialize(),function(msg){
working = false;
//$('#submit').val('Submit');
$('#id-of-div-where-result-will-be-outputed').html(msg);
});
});
});
</script>

2)在表单后添加输出数据的div

<div id="output_div"></div>

3) 在 path-to-php-for-execution 添加:

if(isset($_POST['id-of-form-field-1']) && isset($_POST['id-of-form-field-2']) && isset($_POST['id-of-form-field-3'])) {

// some queries here

}

就这样

于 2012-05-09T15:43:35.773 回答
0

在您的表单中,引用您当前的页面作为操作值...例如,如果您的页面是 index.php。然后使用 action="index.php" 和 method="post"。在您希望数据出现的 div 中,以正确的格式编写 php 代码,并用 if($_POST){ -您的数据库检索代码 - } ?> 括起所有这些代码。这意味着您的发布操作将调用同一页面,这将使您的代码周围的条件为真,因此被执行。希望这会有所帮助,当时它一直困扰着我,但我这样做了。

于 2014-12-30T01:26:10.353 回答
0

在 Notepad++ 中,看起来您的 { } 不匹配。当我在 die 语句之后删除一个并且在 else 之上删除一个时,它们排成一行。

于 2016-03-16T10:43:27.457 回答