我似乎对HTML5占位符有一个奇怪的问题。 我使用下拉菜单显示/隐藏div并在div中我有几个文本字段
当我从下拉列表中选择其中一个选项来显示div时,div显示但占位符不在文本字段中。
任何帮助将不胜感激。
<script type='text/javascript'>
$(document).ready(function(){
$("#customertype").change(function() {
if ($("#customertype option[value='new']").attr('selected')) {
$('#newcustomer').show();
}
if ($("#customertype option[value='existingcustomer']").attr('selected')) {
$('#newcustomer').hide();
$('#existingcustomer').show();
}
});
});
</script>
<!--Start New Customer -->
<div id="newcustomer" style="display:none;">
<div id="field"> <span id="sprytextfield5">
<input class="input address" type="text" name="address" placeholder="Enter Mailing Address" id="address" />
</span> <span id="sprytextfield6">
<input class="input" type="text" name="city" placeholder="Enter City" id="city" />
</span> <span id="sprytextfield7">
<input class="input" type="text" name="province" placeholder="Enter Province" id="province" />
</span> <span id="sprytextfield8">
<input class="input" type="text" name="postalcode" placeholder="Enter Postal Code" id="postalcode" />
</span> </div>
</div>
<!--End New Customer -->
答案 0 :(得分:2)
IE不支持占位符,至少通过9。
https://github.com/madeinstefano/ie-placeholder/blob/master/ie-placeholder.js
使用以下代码:
//IE placeholder;
$(function (){
if (/MSIE 9|MSIE 8|MSIE 7|MSIE 6/g.test(navigator.userAgent)) {
function resetPlaceholder() {
if ($(this).val() === '') {
$(this).val($(this).attr('placeholder'))
.attr('data-placeholder', true)
.addClass('ie-placeholder');
if ($(this).is(':password')) {
var field = $('<input />');
$.each(this.attributes, function (i, attr) {
if (attr.name !== 'type') {
field.attr(attr.name, attr.value);
}
});
field.attr({
'type': 'text',
'data-input-password': true,
'value': $(this).val()
});
$(this).replaceWith(field);
}
}
}
$('[placeholder]').each(function () {
//ie user refresh don't reset input values workaround
if ($(this).attr('placeholder') !== '' && $(this).attr('placeholder') === $(this).val()){
$(this).val('');
}
resetPlaceholder.call(this);
});
$(document).on('focus', '[placeholder]', function () {
if ($(this).attr('data-placeholder')) {
$(this).val('').removeAttr('data-placeholder').removeClass('ie-placeholder');
}
}).on('blur', '[placeholder]', function () { resetPlaceholder.call(this); });
$(document).on('focus', '[data-input-password]', function () {
var field = $('<input />');
$.each(this.attributes, function (i, attr) {
if (['type','data-placeholder','data-input-password','value'].indexOf(attr.name) === -1) {
field.attr(attr.name, attr.value);
}
});
field.attr('type', 'password').on('focus', function () { this.select(); });
$(this).replaceWith(field);
field.trigger('focus');
});
}
});