如何从每个下拉列表中获取选定的值

时间:2014-04-23 06:09:03

标签: each

我想将每个下拉列表更改为包含所选文本的span。 我该怎么做?

我的代码:

   $.each($("#ShowFormResult select"), function (i, val) 
   {
   $(this).replaceWith("<span>" + $(this + " option:selected").text() + "</span>");
   });

1 个答案:

答案 0 :(得分:0)

$。each($(“#ShowFormResult select”),function(i,val)    {    $(this).replaceWith(“”+ $(this +“option:selected”)。text()+“”);    });