我正在尝试将ID带到下一页,但我设法获得的是review.php?ID =没有ID。
以下是代码:
html = html + "Name:" + name + "Type : " + type + "Location : " + location + '<input type="button" value="Write a review!" onclick=parent.location="review.php?ID=" ('+ ID +') />' + "<br/>";
提前感谢您的帮助。
答案 0 :(得分:0)
这里有一些错误。你有不匹配的引号(单引号和双引号),我很确定id不应该用parens围绕它。嵌入的引号也需要转义
类似的东西:
html = html + "Name:" + name + "Type : " + type + "Location : " + location +
"<input type='button' value='Write a review!' onclick='parent.location=\"review.php?ID=("+ID+")\" />" + "<br/>";