如何将我的数组更改为输入字段

时间:2015-11-17 12:34:04

标签: jquery arrays

这是我的阵列。

$m3 = array
(
'2' => '2',
'4' => '4',
'6' => '6',
'9' => '9',
'14' => '14',
'18' => '18',
'20' => '20',
'other' => 'other'

);

现在当我选择'其他'输入字段将显示。

    <?=$form->input('Car/m3', array('name' => "other_interest", 'style' => "display:none", 'class' => 'inputText', 'label' => false));?>

这是显示输入字段的脚本

JQUERY

jQuery(document).ready(function () {
    jQuery("#CarM3").change(function () {
        if (jQuery(this).val() === 'other') {
            jQuery('input[name=other_interest]').show();
        } else {
            jQuery('input[name=other_interest]').hide();
        }
    });
});

我想要的是,当我按“保存”时,输入字段中的文字将显示在我的页面上,而不是&#39;其他&#39;

1 个答案:

答案 0 :(得分:0)

尝试:

$('form').submit(function(){
  $('body').html($('input[name="other_interest"]').val());
});