03 2012 档案
摘要:获取Select :获取select 选中的 text : $("#ddlRegType").find("option:selected").text();获取select选中的 value: $("#ddlRegType ").val();获取select选中的索引: $("#ddlRegType ").get(0).selectedIndex;设置select:设置select 选中的索引: $("#ddlRegType ").get(0).selectedIndex=index;//ind
阅读全文
摘要:js部分:$.ajax({ url: "Default.aspx/aaaa", async: false, type: "POST", contentType: "application/json; charset=utf-8", dataType: "json", data: {name:"Tom",content:"hello"}, success: function(data) { alert(data.d); }, error: function() { alert(
阅读全文