1. JavaScript / Говнокод #13288

    +155

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    /* Декодирование параметров
    ===========================================================================*/
    $(document).ready(function () {
        var stext = $("input[name = 'stext'], input[name = 'text']");
    
        function decodeURLParameter(name) {
            if (!!name) return decodeURI((RegExp(name + '=' + '(.+?)(&|$)').exec(location.search) || [, null])[1]);
        }
    
        if (stext) {
            var urlText = decodeURLParameter('stext');
            if (urlText != undefined && urlText != "" && urlText[0] != '&' && urlText != "null") {
                var sstext = [stext[1], stext[2]];
    
                $(sstext).val(urlText);
            }
        }
    });

    Будучи младшим веб-разработчиком наваял...

    Запостил: sladkijBubaleh, 02 Июля 2013

    Комментарии (14) RSS

    Добавить комментарий