日期:2014-05-17 浏览次数:20464 次
function test() {
var id = document.getElementById("txtDnValue").value;
$.ajax({
type: "POST",
async: false,
url: "Test.aspx/test",
data: "{ID:" + id + "}",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function(msg) {
}
});
}