jsonp和POST操作

I know from reading on here that it is not possible to do a cross domain POST action using jsonp and javascript. But I have to write back data to a web service that's on a different domain using javascript - how do others do it? Just hack it and use a GET action?

how different are the urls? Depending on the answer you might be able to do it with javascript. Assuming that the same origin policy does indeed apply, one way would be to post to the server that served the page, and then on the server use an http library to post to the other system.

Write a proxy, it is super simple.

I've ended up just using a GET method and sending my details back. Not the way REST is supposed to be used but on investigation this is what a number of other web sites seem to do.