我试图在修改后获取cookie的值并将其传递给脚本(通过http GET)。
这是我的代码:
<script>
function editCookieValue() {
// function that sets/edits cookie C
}
</script>
<script type="text/javascript">
function fetchCookieValue() {
// returns value of cookie C
}
jQuery.ajax({
dataType: 'jsonp',
type: 'GET',
jsonpCallback: 'test',
url: 'http://example.com/cgi/send?cookie='+fetchCookieValue(),
success: function(data, status, request) {
}
});
</script>
我希望在执行editCookieValue()
之前确保函数fetchCookieValue()
已完成作业。
完成此任务的最佳解决方案是什么?