简体   繁体   中英

Selected Option Attributes to a variable

I have a wordpress theme using autocomplete suggestion by getJSON,suggestion call into a drop down option like below

在此处输入图片说明

And the inspect view is below 在此处输入图片说明

I want save the ID and value of the selected option into a variable, How can i do it please help.

Thanks

If you are using jquery then you can use attr()

Check the documentation http://api.jquery.com/attr/

try this code:

$('#element option:selected').attr('id');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM