主頁 > 知識庫 > HTML 5 input placeholder 屬性如何完美兼任ie

HTML 5 input placeholder 屬性如何完美兼任ie

熱門標(biāo)簽:百度地圖標(biāo)注為什么總是封號 咸陽穩(wěn)定外呼系統(tǒng)軟件 智能芯電話機(jī)器人 地圖標(biāo)注柱狀圖 怎么做百度地圖標(biāo)注 400開頭的電話好申請不 臨海地圖標(biāo)注app 四川移動電銷外呼客戶管理系統(tǒng) 小朱地圖標(biāo)注
記得引用jquery 類庫

復(fù)制代碼
代碼如下:

$(document).ready(function () {
if ($.browser.msie)
$("input:text,input:password").each(function () {
var $placeholder = $(this).attr("placeholder");
var $width = $(this).css("width");
var $id = $(this).attr("id");
var $height = parseInt($(this).css("height")) + 6 + "px";
var $fontSize = $(this).css("font-size");
var $fontWeight = $(this).css("font-weight");
var $lineHeight = $height;
if ($(this).css("line-height") != "normal") {
$lineHeight = parseInt($(this).css("line-height")) + 6 + "px";
}
if ($placeholder != undefined) {
$(this).after("<span class=\"placeholder ph_" + $id + "\" style=\"width:" + $width + ";line-height:" + $lineHeight + ";height:" + $height + ";font-weight:" + $fontWeight + ";margin-left:-" + $width + ";font-size:" + $fontSize + "\">" + $placeholder + "</span>");
}
$(this).bind("keyup", function () {
if ($(this).val() == "") {
$(this).parent().find(".ph_" + $id).css("display", "inline-block");
}
else {
$(this).parent().find(".ph_" + $id).css("display", "none");
}
});
});
$(".placeholder").live("click", function () {
$(this).prev().focus();
});
});

頁面調(diào)用

復(fù)制代碼
代碼如下:

<input id="n1" type="text" placeholder="我是提示內(nèi)容正常" />

<input id="n2" type="text" placeholder="我是提示內(nèi)容寬高" style="width:100px;height:100px;" />

<input id="n3" type="text" placeholder="我是提示內(nèi)容我有其他樣式" / style="width:300px;height:40px;font-weight:bold;">

<input id="n4" type="text" placeholder="還可以嘗試下其他的" />


樣式

復(fù)制代碼
代碼如下:

<style type="text/css">
.placeholder {display:inline-block;color:gray;vertical-align:top;overflow:hidden;}
</style>

標(biāo)簽:公主嶺 陜西 平頂山 黃石 黃石 山南 南平

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML 5 input placeholder 屬性如何完美兼任ie》,本文關(guān)鍵詞  HTML,input,placeholder,屬性,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML 5 input placeholder 屬性如何完美兼任ie》相關(guān)的同類信息!
  • 本頁收集關(guān)于HTML 5 input placeholder 屬性如何完美兼任ie的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章