我目前有这个
destDiv.append("<td><a href="+value.FileLocation+">Download Here</a></td>")
但我实际上想将url编码value.filelocation到我的下载脚本getsonginfo.php
答案 0 :(得分:0)
如果我正确理解您的问题,您只想做以下事情:
destDiv.append("<td><a href='getsonginfo.php?url="+encodeURIComponent(value.FileLocation)+"'>Download Here</a></td>")
encodeURIComponent
将正确处理value.FileLocation
的编码,并且href需要围绕它'
以便正确解析(否则encodeURIComponent
毫无意义)。< / p>