最佳答案
基本上,我想做的是当我改变window.location
时发送POST
数据,就好像用户提交了一个表单,它转到了一个新页面。我需要这样做,因为我需要传递一个隐藏的URL,我不能简单地将它作为GET
放在URL中。
这是我目前拥有的,但它不发送任何POST数据。
if(user has not voted) {
window.location = 'http://example.com/vote/' + Username;
}
我知道你可以用jQuery.post()
发送POST
数据,但我需要它与新的window.location
一起发送。
因此,概括一下,我需要通过POST
将api_url
值发送到http://example.com/vote/
,同时将用户发送到同一页面。
为了将来的参考,我最后做了以下工作:
if(user has not voted) {
$('#inset_form').html('<form action="http://example.com/vote/' + Username + '" name="vote" method="post" style="display:none;"><input type="text" name="api_url" value="' + Return_URL + '" /></form>');
document.forms['vote'].submit();
}