Home >Web Front-end >JS Tutorial >How Can I Retrieve a Specific Cookie Value by Name in JavaScript?
Targeting Specific Cookies with "Get Cookie by Name" Functionality
In web development, cookies are often used to store and retrieve information about user sessions. When accessing cookies, it's essential to be able to target specific cookies by name.
Challenge:
Consider the following getter function that retrieves cookie values:
function getCookie1() { var elements = document.cookie.split('='); var obligations= elements[1].split('%'); // ... }
This function retrieves values from all cookies in the browser. However, we want to modify it to only retrieve values from a specific cookie named "obligations=".
Solution:
To achieve this, we can utilize a more targeted approach:
function getCookie(name) { const value = `; ${document.cookie}`; const parts = value.split(`; ${name}=`); if (parts.length === 2) return parts.pop().split(';').shift(); }
Explanation:
By using this function, we can ensure that only values from the "obligations=" cookie are retrieved.
The above is the detailed content of How Can I Retrieve a Specific Cookie Value by Name in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!