html明确占位符提交

时间:2012-08-21 09:11:33

标签: php jquery html html5

我使用html 5中提供的占位符属性来获取占位符效果。

<input id="search" class="hasPlaceholder" type="text" placeholder="Personal Trainer" 
value="" name="search">

我也添加了代码来清除提交时的场所。

$(function() {
    if(!$.support.placeholder) { 
        var active = document.activeElement;
        $(':text').focus(function () {
            if ($(this).attr('placeholder') != '' && $(this).val() == $(this).attr('placeholder')) {
                $(this).val('').removeClass('hasPlaceholder');
            }
        }).blur(function () {
            if ($(this).attr('placeholder') != '' && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
                $(this).val($(this).attr('placeholder'));
                $(this).addClass('hasPlaceholder');
            }
        });
        $(':text').blur();
        $(active).focus();
        $('form').submit(function () {
            $(this).find('.hasPlaceholder').each(function() {

                var input = $(this);
                input.removeClass('hasPlaceholder');

                if (input.val() == input.attr('placeholder')) {
                input.removeAttr('placeholder');
                input.val("");
            } 
            });
        });
    }
});

但仍然在提交后提供占位符值。

1 个答案:

答案 0 :(得分:1)

当我进入问题的最后一部分(请建议我在哪里可以获得excel格式的所有职业/行业列表)到谷歌时,我在第1页上来了across this link。它有一个link到这个电子表格,其中包含您正在寻找的确切内容。我喜欢帮助人们,但是说真的,先做一点研究和谷歌搜索。

11-0000             Management Occupations
    11-1000         Top Executives
        11-1010     Chief Executives
            11-1011 Chief Executives
        11-1020     General and Operations Managers
            11-1021 General and Operations Managers
        11-1030     Legislators
            11-1031 Legislators

示例数据。