选择第一个选项不包含字符串jvs

时间:2014-05-06 14:15:34

标签: javascript filter find greasemonkey option

首先抱歉我的英语不好我是法语,我希望你能理解我:)

我使用javascript并且我想选择第一个不包含某个字符串的选项

我有这个

<select class="btn_large" size="8" name="cible">

    <option value="17347">Pseudo1</option>
    <option value="17349">Pseudo2</option>
    <option value="17359">Pseudo3</option>
    <option value="17359">OtherPseudo1</option>
等等......

我希望选择第一个OtherPseudo1我尝试制作此

    paStr = $("table#col_fiche tr:eq(1) td").html();
    pa = paStr.split('/');
    pa = parseInt(pa[0]);

nCible = 0;

        if (pa > 10){


            cible =  $( "select[name='cible'] :first").find('option:eq(nCible)').html();
            cible = cible.replace(/[0-9]/g, '');

            if (cible != Pseudo){

                cible = $( "select[name='cible']:first").find('option:eq(nCible)').prop('selected', true);
                attInput = $("input[name='att'] :first");
                attInput[0].dispatchEvent(click);
                attInput[0].focus();

            }else{
             nCible = nCible+1;
            }
    }

但是如果有人有解决方案,那就行不通了

谢谢你:)

ps:我使用Greasymonkey:)

0 个答案:

没有答案