语义 UI 下拉选择的文本和值似乎很奇怪

Semantic UI dropdown selected text and value seems odd

语义 UI 下拉列表 'get text' 和 'get value' returns 两个重复的文本和值(逗号分隔)是否正常?在这里你可以看到我在说什么:

http://codepen.io/anon/pen/pybmPw

$('#ddl').dropdown();

function getSelectedTextValue() {
    alert( $('#ddl').dropdown('get text') + " : " + $('#ddl').dropdown('get value') );
}

//get text output: Articles,Articles
//get value output: articles,articles

我不明白为什么 is/should 会这样。我希望只有一个 text/value..

jlukic @ github.com/Semantic-Org/Semantic-UI:

The select gets converted into a dropdown. The dropdown call should be on the dropdown not on select after it is converted.

https://github.com/Semantic-Org/Semantic-UI/issues/3816#issuecomment-195660912

很有道理。