下面的代码在我的ajax中我有comment.id
来自php作为唯一ID
html += '<div class="rTableRow1"><div class="rTableHead"><input id="button1" type="button" value="action !" />' + comment.id +'</div></div>'
如上所示,显示表格的完整数据
我需要点击操作按钮,然后点击另一个ID为
的页面任何人都有任何想法必须在我的Ajax中的Action按钮中传递ID。
答案 0 :(得分:1)
您可以将onclick
event-attribute添加到按钮,如下所示:
html += '<div class="rTableRow1"><div class="rTableHead"><input id="button1" type="button" value="action !" onclick="location.href = \'http:\\www.yoursite.com'+comment.id+'\'" />' + comment.id +'</div></div>'
此处,http:\\www.yoursite.com\
可以是您的网址,并附加comment.id
,因为您需要通过网址传递重定向。