How to get the “value” of a FilteringSelect <se

2020-08-17 07:13发布

I am using dijit.form.FilteringSelect to provide a way to select values from a <select>. The problem is, when using dojo, the label is returned instead of the value of the s.

For example:
<select name="test" dojoType="dijit.form.FilteringSelect">
<option value="1">One</option>
<option value="2">Two</option>
</select>

Dojo is returning the literal "one" if that option is selected, instead of the value for that option, "1". The same is true for "two" and "2".

If dojo is removed from this element, the value is returned as expected.

5条回答
闹够了就滚
2楼-- · 2020-08-17 07:30

Ran into the same issue and came up with this solution.

var optVal = dijit.byId("yourDijitId").item.value;

The FilteringsSelect widget puts the "Display Value" in both the displayValue and value properties. The only way that I have found to get the option value is to go through the item property which lists the selected options properties.

查看更多
再贱就再见
3楼-- · 2020-08-17 07:30

I have found out that dojo creates 2 elements. One using the name, which contains the value which uses the NAME of the element, and another which contains the label for the option, which uses the ID of the element. Since I was using document.getElementById(), this was returning the wrong value. Using the value from the name provides the correct result.

查看更多
forever°为你锁心
4楼-- · 2020-08-17 07:34

The dojo way to do this would be to use dijit.byId('yourDijitId').attr().

To get the value you want:

dijit.byId('yourDijitId').attr('value');

To get the value displayed in the filtering select:

dijit.byId('yourDijitId').attr('displayedValue');

EDIT: attr() was deprecated at 1.5, at 1.5 and beyond, use get()

查看更多
一纸荒年 Trace。
5楼-- · 2020-08-17 07:37

To get the Value of dijit.form.FilteringSelect

dijit.byId('yourId').get('value');

To get the displayedValue of dijit.form.FilteringSelect

dijit.byId('yourId').get('displayedValue');
查看更多
Explosion°爆炸
6楼-- · 2020-08-17 07:41

For fellow Googlers out there trying to find the SELECTED OBJECT in FilteringSelect:

dijit.byId("yourDijitId").item

refers to the selected item, in case you need access to the object's other properties.

(hat tip to Bitwize for pointin to right direction with dijit.byId("yourDijitId").item.value)

查看更多
登录 后发表回答