html使用表单给php用get⼀post传值。除了使用input标签传值,还可以用什么传值。我想

2024-12-11 21:17:42
推荐回答(2个)
回答1:

//get
$.get("/url?a=1&b=2",function(){
//..success
})
//post
$.post("/url",{a:1,b:2},function(){
//..success
})
jquery的使用

回答2:

so easy