Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码在 Firefox、Opera 和 Chrome 中运行良好,但在 IE9 中运行良好:
$("#Number").autocomplete({ source: "GetData?Type=Number", minLength: 3, delay: 300 });
通过Fiddler发现在IE9中,在调用GetData时不会自动传递cookie。
如何将 cookie 添加到自动完成请求?
谢谢!
我通过输入请求的完整路径来使其工作:
source: "http://mydomain/GetData?Type=Number",
傻我。在这么简单的问题上花了将近半天的时间。