我有代码将php变量传递到我网站上的另一个页面:
echo'<a class="btn btn-danger" style="margin-left:10px;width:120px;float:left;" href="fullsizemarket.php?imageid=',$imageid,'&action=removed">Remove from Cart</a>';
我可以通过以下方式检索php变量$ imageid:
$imageid = htmlentities($_GET['imageid']);
我还希望将此代码传递给javascript变量的值。该变量在代码的前面部分设置如下:
var rowcount
我不知道如何在传递$ imageid的同一个echo代码中传递var rowcount。这样做的代码是什么?
答案 0 :(得分:1)
如何回复:
echo
"<a class='btn btn-danger'
style='margin-left:10px;width:120px;float:left;'
href='fullsizemarket.php?imageid=$imageid&action=removed&rowcount='
onclick = \" this.setAttribute('href', this.getAttribute('href')+rowcount) \"
>Remove from Cart</a>";