日期:2014-05-17 浏览次数:20759 次
<script src="js/jquery-1.4.2.min.js"type="text/javascript"></script>
<script type="text/javascript" language="javascript">
alert(window.location);
function testAjax() {
$.post('Default4.aspx',{ url:window.location.href },function (text, status) { alert(text); });
}
</script>
public ActionResult Address(string address)
{
Return address;
}
$.ajax({
type: "POST",// 使用get方法访问后台
url: "SaveEigenMedia.aspx",
data: "act=GetSectionPoint&id=" + $("#txtColumnSectionID" ).val(),
success: function(msg) {