将javascript变量添加到href

时间:2014-08-27 15:06:52

标签: javascript urlencode

我目前有这个

destDiv.append("<td><a href="+value.FileLocation+">Download Here</a></td>") 

但我实际上想将url编码value.filelocation到我的下载脚本getsonginfo.php

1 个答案:

答案 0 :(得分:0)

如果我正确理解您的问题,您只想做以下事情:

destDiv.append("<td><a href='getsonginfo.php?url="+encodeURIComponent(value.FileLocation)+"'>Download Here</a></td>") 

encodeURIComponent将正确处理value.FileLocation的编码,并且href需要围绕它'以便正确解析(否则encodeURIComponent毫无意义)。< / p>