下面的代码适用于B
中的值(select#B
),但不适用于$index
中的变量(select#index
)。
实际上我需要id
作为变量,并希望jQuery函数对该变量进行操作。
$(function(){
$('select#B').change(function(){
var this_value = $(this).val();
$('input#seleted_value').val(this_value);
});
});
答案 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(){