你好我不是很擅长 javascript,我正在尝试保存从返回的值
(Math.random() + '') * 1000000000000000000 + '?'
在 cookie 中使用:document.cookie
到目前为止,我有这个:
document.cookie="rand="(Math.random() + '') * 1000000000000000000 + '?'";path=/";
但它只是存储 (Math.random() + '') * 1000000000000000000 + '?' 作为一个字符串而不是实际使用它来计算一个值,有人可以解释我哪里出错了吗?