佔位符不能在IE-9中工作,所以我使用下面的代碼來佔位符。佔位符不起作用
jQuery(function() {
debugger;
jQuery.support.placeholder = false;
test = document.createElement('input');
if ('placeholder' in test) jQuery.support.placeholder = true;
});
// This adds placeholder support to browsers that wouldn't otherwise support it.
$(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')).addClass('hasPlaceholder');
}
});
$(':text').blur();
$(active).focus();
$('form:eq(0)').submit(function() {
$(':text.hasPlaceholder').val('');
});
}
});
當我服用測試的價值,它表明我null.How可以得到所有輸入標籤的細節?
佔位符屬性將不支持低於IE 10 –
@Deepu貌似OP知道,並試圖實現一種變通方法... – Teemu
@Deepu OP的代碼是「佔位符」支持的一個墊腳... –