Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
550 views
in Technique[技术] by (71.8m points)

javascript - Unable to access cookies set by another Domain in IE

I am setting the cookie from a local HTML file as below using cookie.js library

$.cookies.set("Demo","Dummy Data");

From another domain I am trying to get the cookie value using below code

alert($.cookies.get("Demo")); 

But it is returning me null.
Please help me on this

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This is by design. You can only get the value of a cookie which was set on the current domain.

What you are asking for is not possible due to the security measures built in to web browsers.

The best alternative is to make a JSONP AJAX request which can cross domains.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...