Created
December 5, 2013 12:30
-
-
Save kurudrive/7804444 to your computer and use it in GitHub Desktop.
[javascript]cookieの受け渡し
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
// クッキーに投げる | |
jQuery.cookie('jsNotIn','値'); | |
// クッキーの値を受け取る | |
var notIn = jQuery.cookie('jsNotIn'); | |
console.log(notIn); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment