PHP选择选项来更改一些数据

时间:2015-01-27 06:38:33

标签: php wordpress select wordpress-plugin

我正在装箱一个wordpress插件。在这里,我需要一些人。我创建了一个带有php数组的选择框:

$scmslidetype = array(
    "image_slide" => "Image Slide",
    "youtube_slide" => "YouTube Slide",
    "vimeo_slide" => "Vimeo Slide",
    "text_slide" => "Text Slide");

我的选择框代码是:

<select name="scmslidetype" id="scmslidetype">';
foreach ($scmslidetype as $key=>$value){
    $html .= "<option value='$key' ";
        if(isset($postdata['scmslidetype']) && ($key==$postdata['scmslidetype']))
        $html .= 'selected="selected"';
        $html .= ">$value</option>";
}
$html .=               '</select>

选择框显示正常。但是当我选择任何像Youtube Slide这样的值时我想要 - 我的一些表td是隐藏的,而某些表td是显示的。我怎么能这样做。

1 个答案:

答案 0 :(得分:0)

尝试以下代码,

$('document').ready(function(){

$('#scmslidetype').on('change', function (e) {

  $('your-td-id').hide();

});

});