Rumah > Artikel > pembangunan bahagian belakang > $.get()总是执行不成功
$(document).ready(function(){
$("#new").click(function(){
var order1=document.getElementById("new1").value;
$.get("obj_search.php",{order:order1},function(response)
{
$("#show").html(response);
})
});
});
就是这一段,值总是传不过去,运行的时候根本就没有传值,我一直用这个方法写的都可以传,为什么这个总是运行不成功呢,我在$.get()之前加过alert(order1);可以运行就到了$.get()就不执行,
最近快被毕业设计弄疯,WEB开发懂得也不多,望大家赐教~~~~~~
点审查元素里面的NETWORK看了,什么都没有传过去除了网页上本来就有的图片啥的
alert(response);打印这个看看有结果集没
用jquery怎么不直接获取id
$("#new1").val();
顺便看一下你的ajax的URL是正确的么
$.get("obj_search.php",{ “order ”:order1},function(response)
用google浏览器查看http请求中都是啥,有没有返回你想要的东西,也可以直接访问obj_search.php?order=参数,看返回什么值。
用浏览器看下在点击的时候,是否有网络请求。
如果有的话,看下请求的地址是否错误,或者返回值是否异常
用浏览器看下在点击的时候,是否有网络请求。
如果有的话,看下请求的地址是否错误,或者返回值是否异常
1、确认你的页面是从服务器上运行的
2、规范的写法是
$(document).ready(function(){ $("#new").click(function(){ var order1 = $("#new1").value; $.get("obj_search.php",{order:order1},function(response) { $("#show").html(response); }) });});
1、确认你的页面是从服务器上运行的
2、规范的写法是
$(document).ready(function(){ $("#new").click(function(){ var order1 = $("#new1").value; $.get("obj_search.php",{order:order1},function(response) { $("#show").html(response); }) });});
那你的 obj_search.php 是怎么写的?