html listbox only posts selected items

Lessons learned:

html listbox only posts selected items

 

solution

$
(
function
 
()
 
{
         $
(
"form"
).
submit
(
function
 
(
e
)
 
{
             $
(
"#yourListBox option"
).
attr
(
"selected"
,
 
"selected"
);
         
});
     
});
 

你可能感兴趣的:(listbox)