jQuery 中post和get的使用同步操作
解决方法1:
在全局设置:
1 2 3 | $.ajaxSetup({ async : false }); |
然后再使用post或get方法
1 2 3 4 5 6 7 8 9 | $.get("register/RegisterState", {test : 12}, function(data, status) { if (status == "success") { data = eval("(" + data + ")"); aDataSet = data; alert("data is " + aDataSet); } else { alert("wrong"); } }); |
解决方法2:
直接使用$.ajax
1 2 3 4 5 6 7 8 9 10 | $.ajax({ type : "post", url : "register/RegisterState", data : "test=" + test, async : false, success : function(data){ data = eval("(" + data + ")"); aDataSet = data; } }); |
layer.prompt使文本框为空的情况下也能点击确定 用纯CSS实现的箭头的各种方法