<script type="text/javascript" >
$(document).ready(function () {
$(".btnOrder1").click(function () {
var id = $(this).attr("title");
var oper = "check";
$.ajax({
type: "post",
url: "dMenuPage.aspx",
data: "&id=" + id ,
dataType: "Text",
success: function (data) {
window. location.href ='dShopCart.aspx';
}
});
});
}); 文章来源地址:https://www.yii666.com/article/758225.html
</script>文章地址https://www.yii666.com/article/758225.html网址:yii666.com
如果要传递参数则window.location.href =
'dShopCart.aspx?id='
+id;