模態的按鈕,一個jQuery值包含的帖子ID:存放在一個PHP變量
<button onclick='getValue("<?=$id?>");' data-toggle="modal" name="submit" data-target="#squarespaceModal">Purchase Now</button>
當我使用alert
它表明這個ID正常,但我需要將此ID存儲在PHP可變
`function getValue(id){
alert(id);
// i am trying this but not done
// <?php $xyz = ?> id ;
}`
我也嘗試使用$.post
但在模式中的數據是不是來 像
$.post("<?=$current_url;?>", function(id) { // $("#div1").html(id); //alert(id); });
我怎麼能存儲在一個PHP變量一個jQuery價值?我見過的大多數例子都是相反的,例如var x =<?php echo $y;?>
,但我需要相反的方式。
你從'警報(ID)得到什麼結果;'? – josephting
我的帖子id喜歡1/2 –
我只是想要在任何PHP變量這個id –