所以我得到了这个非常简单的jQuery数据表,并且我试图将我选择的值变为php变量。这是我的代码:
<script>
var hlr = 0; // Reference to the currently highlighted row
function rowClick()
{
if (hlr)
$("td:first", hlr).parent().children().each(function(){$(this).removeClass('markrow');});
hlr = this;
$("td:first", this).parent().children().each(function(){$(this).addClass('markrow');});
// You can pull the values out of the row here if required
var a = $("td:first", this).text();
var b = $("td:eq(1)", this).text();
//$_SESSION['Klantnaam']="+a+");
alert("Keuze = "+a+""); //this is what I need in my PHP session variable.
}
</script>
感谢您的阅读,我们非常感谢您的回复。
答案 0 :(得分:0)
我在最近的项目中已经遇到过这个问题
这是我的解决方案
但是我必须把值放在会话变量中,所以
<强> STEPS 强>:
创建了一个将值放入会话变量
使用js var value