找到類似於你問這裏有什麼東西: https://stackoverflow.com/a/19184179/6555780
它基本上需要JavaScript來組織,所以所選擇的選項將立即顯示在屏幕上,下面的代碼是從大衛的回答採取可以在這裏查看:http://jsfiddle.net/aCb73/
<select name="ref_rubrique" id="ref_rubrique">
<option value="-- EMPTY --" selected> </option>
<option value="YES!!!">Yes</option>
</select>
<div id="ref_output"></div>
<script type="text/javascript">
var selectElement = document.getElementById('ref_rubrique');
var divElement = document.getElementById('ref_output');
selectElement.onchange = function() {
var selectedValue = selectElement.options[selectElement.selectedIndex].value;
if (selectedValue == '-- EMPTY --') {
divElement.innerHTML = '<p>No</p>';
} else if (selectedValue == 'YES!!!') {
divElement.innerHTML = '<p>Yes</p>';
}
};
</script>
這基本上瞄準ref_rubique選擇標籤並顯示在使用Javascript(默認爲--EMPTY--)
繼低於我們的意見,代碼基礎上,選擇下面的代碼可能會NG-表幫助:
self.initialSorting = [
{ label: "Id ASC", value: { id: "asc"} },
{ label: "Id DESC", value: { id: "desc"} },
{ label: "Name ASC", value: { name: "asc"} },
{ label: "Name DESC", value: { name: "desc"} }
];
偉大的解決方案,只有一個錯誤 - 重新打開下拉列表時,所選值將以星號顯示在列表中。 無論如何,正如你可以在我的問題更新中看到它仍然不能幫助我。這是我原來的問題的最佳答案,所以如果沒有更好的東西會彈出,我可能會標記它。 – HuBeZa
@HuBeZa,如果你能詳細說明所需行爲背後的意圖,這將有所幫助。 –
你說得對。由於問題發生了顯着變化,我決定創建一個新的問題 http://stackoverflow.com/questions/38725612/how-can-i-put-a-placeholder-text-on-ng-table-select-filter – HuBeZa