<input type=button value='Do Stuff' onClick='document.cookie = "Note_<% Response.Write(arrTest(0,i)) %> = ' + (Document.getElementById("StuffTest<% Response.Write(arrTest(0,i)) %>").value) + '"'>
我在这里要做的是当用户点击按钮时,我想要一个使用以下值创建的 cookie:Note_(arrTest 的值) = (文本框的值)。
下面的代码工作得很好:
<input type=button value='Do Stuff' onClick='document.cookie = "Note_<% Response.Write(arrTest(0,i)) %> = Awesome!"'>
它创建一个 cookie,其值为:Note_(value of arrTest) = Awesome!
将文本框的值放入 cookie 中我做错了什么?我假设它与所有那些令人困惑的单引号/双引号有关,所以我认为我只是有错字盲,但我的一部分认为我实际上不能做我在这里想做的事情。
有什么想法吗?