如何在JQuery脚本中使用PHP变量

时间:2014-04-09 09:54:45

标签: php jquery

我发现了一些类似的问题,但我无法弄明白:(

这是我的jQuery:

<script>
function avukat_change()
{
        if (jQuery("#AVUKATNO").val()=='14')
            jQuery("#fieldatamatarihi").show(1000);  
        else  
            jQuery("#fieldatamatarihi").hide(1000);
}

我想取代&#39; 14&#39;有了这个:

$UserID = scf_user_userid()

4 个答案:

答案 0 :(得分:1)

这应该做:

function avukat_change()
{
    if (jQuery("#AVUKATNO").val()=='<? echo scf_user_userid();?>') 
       jQuery("#fieldatamatarihi").show(1000); 
    else  
       jQuery("#fieldatamatarihi").hide(1000);
}

答案 1 :(得分:1)

<script>
function avukat_change()
{
    if (jQuery("#AVUKATNO").val() == '<?php echo scf_user_userid(); ?>') 
       jQuery("#fieldatamatarihi").show(1000); 
    else  
       jQuery("#fieldatamatarihi").hide(1000);
}
</script>

答案 2 :(得分:0)

<script>
function avukat_change(){
    if (jQuery("#AVUKATNO").val()==<?php echo $UserID = scf_user_userid(); ?>)  jQuery("#fieldatamatarihi").show(1000); else  jQuery("#fieldatamatarihi").hide(1000);
}

答案 3 :(得分:0)

或者更快的解决方案就是速记。

<script>
function avukat_change()
{
    if (jQuery("#AVUKATNO").val()=='<?=scf_user_userid()?>') 
       jQuery("#fieldatamatarihi").show(1000); 
    else  
       jQuery("#fieldatamatarihi").hide(1000);
}
</script>