Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用 javascript 你可以用 xmlhttp.open 来做,还有什么其他的方法可以做到这一点?
如果您不想要 POST 方法,请使用 jQuery :
$.get('test.html',{foo: 'bar'}, function(data) { alert('Load was performed.'); });
见http://api.jquery.com/jQuery.get/