我想将每个下拉列表更改为包含所选文本的span。 我该怎么做?
我的代码:
$.each($("#ShowFormResult select"), function (i, val)
{
$(this).replaceWith("<span>" + $(this + " option:selected").text() + "</span>");
});
答案 0 :(得分:0)
$。each($(“#ShowFormResult select”),function(i,val) { $(this).replaceWith(“”+ $(this +“option:selected”)。text()+“”); });