如何在Div按钮中传递ID,它在ajax中必须将Id传递给另一个页面?

时间:2017-09-05 12:16:47

标签: php html mysql ajax

下面的代码在我的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。

1 个答案:

答案 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,因为您需要通过网址传递重定向。