How to Get Dropdown's Selected Item's text in Kendo UI?

后端 未结 7 961
遥遥无期
遥遥无期 2021-02-05 02:05

I am using Kendo UI Controls. I want to get the selected text of the dropdown list in jquery. I have used this syntax :

 $(\"#ddl\").data(\"kendoDropDownList\")         


        
7条回答
  •  长发绾君心
    2021-02-05 02:36

    In order to get text value of a DropDownList use command as below :

    $("#ddl").data("kendoDropDownList").text();
    

提交回复
热议问题