作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了一些代码来在同一页面上获取结果。但它不起作用。它在 result.php 文件中向我显示结果。卡住了 ot。我对 AJAX 完全陌生。如有任何建议,请。
AJAX
$("document").ready(function(){
$(".but").submit(function(){
event.preventDefault();
var $form = $( this ),
var myData=$form.find( 'input[name="query"]' ).val(),
$.ajax({
url: 'result.php',
data: myData,
type: 'post',
dataType: "html",
success: function(result){
$('.coupons').text(result)
} }); }); });
结果.php
$keyword = mysqli_real_escape_string($con,$_GET['query']); // always escape
$keys = explode(" ", $keyword);
$sql="SELECT c.* , sc.* , sm.* ,ca.* from store_category sc INNER JOIN store_manufacture sm ON sm.sm_id=sc.store_id INNER JOIN categories ca ON ca.cat_id=sc.cat_id INNER JOIN coupons c on c.c_sc_id=sc.sc_id WHERE c.c_name LIKE '%$keyword%' OR sm.sm_brand_name LIKE '%$keyword%' OR ca.cat_name LIKE '%$keyword%' OR c.c_description LIKE '%$keyword%'";
foreach ($keys as $k) {
$sql.="OR c.c_name LIKE '%$k%' OR sm.sm_brand_name LIKE '%$k%' OR ca.cat_name LIKE '%$k%' OR c.c_description LIKE '%$k%'";
}
$result = mysqli_query($con, $sql);
$count=mysqli_num_rows($result);
if($count!=0) {
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
echo $row['c_name'];
echo $row ['c_description'];
echo $row['sm_brand_name'];
echo "<br>";
}
}
else
{
echo "no result";
}
最佳答案
submit(function(){
中的变量 event
未定义。
将其作为函数的参数提供:
$("document").ready(function(){
$(".but").submit(function(event){ // here
event.preventDefault();
var $form = $( this ),
var myData=$form.find( 'input[name="query"]' ).val(),
$.ajax({
url: 'result.php',
data: myData,
type: 'post',
dataType: "html",
success: function(result){
$('.coupons').text(result)
}
});
});
});
关于javascript - 在同一页面的 div 中显示 ajax 调用结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44090943/
我在 StackOverflow 和其他地方看到了很多与此类似的问题,但没有一个直接解决我的问题。我正在 THREE.js 中使用凸包生成器生成 n 边多面体。我想将方形纹理映射到每个多面体的每个面上
我是一名优秀的程序员,十分优秀!