Ajax-recently want to get a Yii of the dropdown box-level operation, but has not come out, the great God help to see it!!!

Source: Internet
Author: User
Keywords Ajax PHP Yii Selection linkage
Ajaxphpyii Selection Linkage

This is the code
View

  
  
    '1',2=>'2'),array('empty'=>'--请选择--',        'id' => 'node',        'ajax'=>array(            'type'=>'POST',            'url'=>Yii::app()->createUrl('test/updatea'),            'update'=>'#servers',            'data'=>array('node_name'=>'js:$("#node").val()'),        )    )       );        echo CHtml::dropDownList('servers', '', array('--请选择--'));?>

This is the controller.

  class TestController extends Controller{    public function actionIndex(){          $this->renderPartial('index');}    public function actionUpdatea(){      $data = array(1=>'桂林',2=>'南宁');    foreach($data as $value=>$name){     $dropDownCities = CHtml::tag('option',array('value'=>$value),CHtml::encode($name),true);    }  echo  $dropDownCities ;}}

Great God help to see what's going on!

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.