So say we have an a tag in the page
<a href="www.url1.com">url1</a>
How can I set my cookie to www.url1.com
with javascript
onclick
?
答案 0 :(得分:0)
假设id
标记的<a>
为myUrl
,那么您可以通过
href
值
var myUrl = document.getElementById('myUrl').getAttribute("href");
您可以使用
设置Cookiedocument.cookie = "href=" + myUrl;
JSFiddle:https://jsfiddle.net/quttmdx5/