PHP select 更改一些数据的选项

PHP select option to change some data

我正在创建一个 wordpress 插件。在这里,我需要某人提供一些。我创建了一个带有 php 数组的 select 框,如下所示:

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

我的 select 盒子代码是:

<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>

Select 框显示正常。但是当我 select 任何值时,我想要像 Youtube Slide - 我的一些 table td 是隐藏的,一些 table td 是显示的。我该怎么做。

试试下面的代码,

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

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

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

});

});