c# – 使用jQuery删除下拉列表中的第一个值,但删除第一个值

前端之家收集整理的这篇文章主要介绍了c# – 使用jQuery删除下拉列表中的第一个值,但删除第一个值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
if (questions[0]) {
                 $("select[id$=ddlPollQuestions] > option").remove();
                 $('#ddlPollQuestions').append('<option value="">Choose a question to compare to</option>');
                 $.each(questions,function(i,question) {
                     $('#ddlPollQuestions').append('<option value="' + question.QUESTIONID + '">' + question.TEXT + '</option>');
                 });
             } else {
                 $("select[id$=ddlPollQuestions] > option").remove();
                 $('#ddlPollQuestions').append('<option value="' + 0 + '">' + 'There are no questions of this type' + '</option>');
             }

它的作用是删除所有以前的值,但是我想要第一个选项,即“选择一个问题…”保留,然后显示“没有问题…”作为我的第二个选项.我的代码在这里没有显示“选择一个问题..”作为第一个选项.谢谢你看看!

解决方法

使用 :gt选择器.

试试这个(注意我已经添加了一个字符串变量,以便在每个循环之后附加选项以获得更好的性能):

if (questions[0]) {
         $("select[id$=ddlPollQuestions] > option:gt(0)").remove();
         $('#ddlPollQuestions').append('<option value="">Choose a question to compare to</option>');
         var options = "";
         $.each(questions,question) {
            options += '<option value="' + question.QUESTIONID + '">' + question.TEXT + '</option>';
         });
         $('#ddlPollQuestions').append(options);
 } else {
         $("select[id$=ddlPollQuestions] > option:gt(0)").remove();
         $('#ddlPollQuestions').append('<option value="' + 0 + '">' + 'There are no questions of this type' + '</option>');
 }
原文链接:https://www.f2er.com/csharp/99239.html

猜你在找的C#相关文章