HTML:
<div class="div-input">
<input type="text" id="loginname" name="username" value="" maxlength="25"
class="form-input" placeholder="Username"
/>
</div>
<div class="div-input">
<input type="password" id="loginpassword" name="password" maxlength="25"
class="form-input" placeholder="Password"
/>
</div>
<div>
<input type="submit" name="login" value="LOGIN" class="form-button"
onclick="return check_login("/")"
/>
<span id="logInfo"></span><span style="display: none;" id="overlay"></span>
<span style="display: none;" id="popup">
<img src="/public/images/loading.gif" />
</span>
</div>
我的问题是占位符在所有浏览器中都运行良好,对于IE8和IE9,我使用Javascript来解决它,但在IE10中,占位符正在工作,但不是以正确的方式。
在页面加载时会发生什么?如果Placeholder
是占位符,我在IE10中只获得Placeholde
占位符(最后一个字母消失),但如果我在输入框中单击在页面外,它会将正确的占位符显示为Placeholder
。
如果我在输入字段中输入任何单词,我会在输入字段的角落处得到一个十字符号(关闭符号),该符号仅在IE10中发生。
答案 0 :(得分:1)
听起来你的javascript打破了原生的IE10占位符功能。
要对此进行测试,并希望修复它,请将您为占位符编写的javascript包装在条件语句中,以便它仅适用于IE9及以下版本。
<!--[if lt IE 9]>
<script>
document.createElement('header');
document.createElement('nav');
</script>
<![endif]-->
或者,Mathias Bynens有一个非常好的jquery插件可以免费使用并为您处理所有这些:https://github.com/mathiasbynens/jquery-placeholder
某些CMS已经使用此代码构建了一个插件。 Wordpress插件位于:http://wordpress.org/plugins/html5-placeholder-polyfill/
答案 1 :(得分:-2)
我不确定ie10中输入支持的placeHolder属性,但如果你想要一个占位符,你可以通过下面的jquery来做这个...
if(navigator.appVersion.match(/MSIE [\d.]+/)){
var placeholderText = 'Some Placeholder Text';
$('#loginname').val(placeholderText);
$('#loginname').blur(function(){
$(this).val() == '' ? $(this).val(placeholderText) : false;
});
$('#loginname').focus(function(){
$(this).val() == placeholderText ? $(this).val('') : false;
});
}
你也可以为密码做同样的事情..
你有没有尝试使用代码......我认为应该有效...
$('#loginname').attr('placeholder', 'username');
$('#password').attr('placeholder', 'password');
答案 2 :(得分:-2)
试试这个,是浏览器中占位符的jquery pluin,它不完全支持它。离开你的PHP代码并添加这个js它应该工作:
(function($) {
/**
* Spoofs placeholders in browsers that don't support them (eg Firefox 3)
*
* Copyright 2011 Dan Bentley
* Licensed under the Apache License 2.0
*
* Author: Dan Bentley [github.com/danbentley]
*/
// Return if native support is available.
if ("placeholder" in document.createElement("input")) return;
$(document).ready(function(){
$(':input[placeholder]').not(':password').each(function() {
setupPlaceholder($(this));
});
$(':password[placeholder]').each(function() {
setupPasswords($(this));
});
$('form').submit(function(e) {
clearPlaceholdersBeforeSubmit($(this));
});
});
function setupPlaceholder(input) {
var placeholderText = input.attr('placeholder');
setPlaceholderOrFlagChanged(input, placeholderText);
input.focus(function(e) {
if (input.data('changed') === true) return;
if (input.val() === placeholderText) input.val('');
}).blur(function(e) {
if (input.val() === '') input.val(placeholderText);
}).change(function(e) {
input.data('changed', input.val() !== '');
});
}
function setPlaceholderOrFlagChanged(input, text) {
(input.val() === '') ? input.val(text) : input.data('changed', true);
}
function setupPasswords(input) {
var passwordPlaceholder = createPasswordPlaceholder(input);
input.after(passwordPlaceholder);
(input.val() === '') ? input.hide() : passwordPlaceholder.hide();
$(input).blur(function(e) {
if (input.val() !== '') return;
input.hide();
passwordPlaceholder.show();
});
$(passwordPlaceholder).focus(function(e) {
input.show().focus();
passwordPlaceholder.hide();
});
}
function createPasswordPlaceholder(input) {
return $('<input>').attr({
placeholder: input.attr('placeholder'),
value: input.attr('placeholder'),
id: input.attr('id'),
readonly: true
}).addClass(input.attr('class'));
}
function clearPlaceholdersBeforeSubmit(form) {
form.find(':input[placeholder]').each(function() {
if ($(this).data('changed') === true) return;
if ($(this).val() === $(this).attr('placeholder')) $(this).val('');
});
}
})(jQuery);
然后你必须通过以下方式调用php页面或其他js中的插件:
$(function() {
// Invoke the plugin
$('input, textarea').placeholder();
});
希望这有帮助!