1,set cookie before send ajax
$.cookie("example", "foo");
2,send ajax
$.ajax
url: ...
type: "GET"
headers: ...
data:...
3,cookie "example" not sent,but cookie set by server has sent
4,alert document.cookie ,"example" is there,but server cookie not show up in the alert
does WebViewJavascriptBridge store cookie somewhere else?
how to send a cookie from the client