文檔首頁>>telerik中文文檔>>浮動(dòng)標(biāo)簽
浮動(dòng)標(biāo)簽
立即下載Kendo UI for jQuery
浮動(dòng)標(biāo)簽是表單或輸入字段的占位符文本,它浮動(dòng)在該字段上方,并且在用戶開始與該字段交互時(shí)保持可見。
要在 Kendo UI of jQuery 中為AutoComplete實(shí)現(xiàn)浮動(dòng)標(biāo)簽,請將其定義為字符串或函數(shù)。
以下示例演示了如何將浮動(dòng)標(biāo)簽設(shè)置為字符串:
<input id="autocomplete" /> <script> $(document).ready(function(){ $("#autocomplete").kendoAutoComplete({ dataSource:[ { text: "John" }, { text: "Patrick" }, { text: "Simon"} ], dataTextField:"text", label: { content: "First Name", floating: true } }); }); </script>
以下示例演示了如何從函數(shù)設(shè)置浮動(dòng)標(biāo)簽:
Copy code <input id="autocomplete" /> <script> $(document).ready(function(){ $("#autocomplete").kendoAutoComplete({ dataSource:[ { text: "John" }, { text: "Patrick" }, { text: "Simon"} ], dataTextField:"text", label: { content: function(){ return "First Name"; }, floating: true } }); }); </script>