$('#question-stem-uploader').on('click','',function(){ //获取编辑器内容(ke-edit-iframe: 编辑器iframe的classm名称)(ke-content:iframe里面包含内容的div的class名称) var html = $(".ke-edit-iframe").contents().find(".ke-content").html(); $(".ke-edit-iframe&qu
使用dynamic获取类型可变的json对象 Dictionary<string, object> dict = new Dictionary<string, object>(); List<dynamic> lst = new List<dynamic>() { new { aa = 1, bb = "2" } }; Type type = lst[0].GetType(); var ps = type.GetProperties();