如何在jquery函数中使用php变量id?

时间:2013-04-29 11:31:32

标签: php jquery variables

下面的代码适用于B中的值(select#B),但不适用于$index中的变量(select#index)。 实际上我需要id作为变量,并希望jQuery函数对该变量进行操作。

jquery函数:

$(function(){

    $('select#B').change(function(){

        var this_value = $(this).val();

            $('input#seleted_value').val(this_value);

    });

});

4 个答案:

答案 0 :(得分:1)

尝试

$("select#<?php echo $index;?>").change(function(){
     var this_value = $(this).val();

     $('input#seleted_value').val(this_value);
});

答案 1 :(得分:1)

这样做

$("select#<?php echo $index;?>").change(function(){

var this_value = $(this).val();

    $('input#seleted_value').val(this_value);

});

答案 2 :(得分:0)

 $('select#<?=$index?>').change(function(){

OR

 $('select#<?PHP echo $index;?>').change(function(){

答案 3 :(得分:0)

   var selector = 'select#<?= $index ?>'; // Work only if short tag is enabled

    OR

    var selector = 'select#<?php echo $index ?>'; 

    $(selector).change(function(){