@H_301_0@在进行网页开发时,与前台与后台数据进行交互是一个无法避免的问题,不同的业务需求有着不同的传递方式,下面是我在开发过程中用到过的几种传递方式,写出来与大家分享一下,由于经验不足,出现错误的地方欢迎大家指正。
@H_301_0@
1、通过window.location.href或者document.location.href进行传递,
比如window.location.href="<a href="http://www.ewcar.net?name=sun&age=21">http://www.ewcar.net?name=sun&age=21";在这个例子中所携带的参数即为name和age,分别是sun和21,当然还可以加上锚点#,可以指定到页面的某一个位置。@H_301_0@
2、通过Ajax进行数据的传递,格式如下:
<div class="jb51code">
<pre class="brush:js;">
$.ajax{
type: "post",url: "test/index",dataType: json,data: $("#orderForm").serialize(),success: function(d){
alert(d.msg);
}
error:function(d){
alert(d.error);
}
}