Diligent web site
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

malformed_cookie.html 429B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
  6. <script src="../src/jquery.cookie.js"></script>
  7. <script>
  8. try {
  9. Object.defineProperty(document, "cookie", { get: function() { return "first=one; ; second=two"; } });
  10. window.testValue = $.cookie("second");
  11. window.ok = true;
  12. } catch (er) {
  13. }
  14. </script>
  15. </head>
  16. <body>
  17. </body>
  18. </html>