0

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

jQuery函数:

$(function(){

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

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

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

    });

});
4

4 回答 4

1

做这个

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

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

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

});
于 2013-04-29T11:33:49.497 回答
1

尝试

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

     $('input#seleted_value').val(this_value);
});
于 2013-04-29T11:33:11.250 回答
0
 $('select#<?=$index?>').change(function(){

或者

 $('select#<?PHP echo $index;?>').change(function(){
于 2013-04-29T11:36:26.620 回答
0
   var selector = 'select#<?= $index ?>'; // Work only if short tag is enabled

    OR

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

    $(selector).change(function(){
于 2013-04-29T11:52:28.113 回答