0

我正在使用 smarty 和 php。我有两个下拉菜单。此外,我有两个数据库,一个带有类别,另一个带有带有类别 ID 的新闻。其中一个菜单读取类别。我希望当我从第一个菜单类别中选择页面时自动刷新并将该类别的新闻放入第二个下拉列表中。

<form method="post">
        <h3>Category of news</h3>

      <select name="categoriesForm" id="news_cat">   
        <option value="0"></option>  
        {foreach from=$categories item=i}                              
            <option value="{$i.id}"> {$i.name|stripslashes} </option>            
        {/foreach}    
      </select>

        <h3 style="position:absolute;left:500px; top:130px;">Name of news</h3>

        <select name="news" id="news_name" style="position:absolute;left:500px; top:190px;">   
        <option value="0"></option>  
        {foreach from=$news item=i}                              
            <option value="{$i.id}"> {$i.name|stripslashes} </option>            
        {/foreach}    
      </select>


  </form>

这是控制器:

function edit_news(){
                    $cat = $this->news->getCategoriesNews();
                    $this->assign('categories',$cat);


                    $selected_key = $_POST['categoriesForm'];



                    $news = $this->news->getNameNews($selected_key);
                    $this->assign('news',$news);

        }     

这就是模型

 function  getCategoriesNews(){
        return  $this->db->GetAll("SELECT id, name FROM categories ");
   }

   function getNameNews($category){
        return $this->db->GetAll("SELECT name,cat_id FROM news WHERE cat_id = '$category' ");
   }
4

1 回答 1

0

好吧,我已经提到了该过程的概述。我相信只需很少的功课,您将能够实现您的功能。

1) 使用onChange下拉categoriesForm菜单调用 Javascript / jQuery 函数。因此,每当您更改 的值时categoriesForm,都会调用脚本函数。

<select name="categoriesForm" id="news_cat" onChange="feed_secondary()">

2)feed_secondary获取当前值categoriesForm并触发和 ajax 调用。
3)在ajax调用中,传递当前类别的值。
4) 在控制器中,处理 category_id 并将该类别的所有消息作为响应发送。
4) 在feed_secondary中,处理响应并操作辅助下拉菜单news

于 2013-11-11T09:21:21.137 回答