国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > HTML > 正文

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

2024-08-26 00:17:36
字體:
來源:轉載
供稿:網友

點評:這篇文章主要介紹了HTML 5 input placeholder 屬性完美兼任ie的方法,需要的朋友可以參考下

記得引用jquery 類庫

復制代碼

代碼如下:


$(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();
});
});


頁面調用

復制代碼

代碼如下:


<input type="text" placeholder="我是提示內容正常" />

<input type="text" placeholder="我是提示內容寬高" />

<input type="text" placeholder="我是提示內容我有其他樣式" />

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


樣式

復制代碼

代碼如下:


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


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 西城区| 凭祥市| 定远县| 承德市| 望都县| 正定县| 沅江市| 红安县| 宜良县| 淮北市| 长治县| 正定县| 博客| 电白县| 侯马市| 颍上县| 华容县| 杂多县| 大厂| 阿勒泰市| 咸阳市| 镇坪县| 唐海县| 巫山县| 精河县| 曲沃县| 钦州市| 定日县| 米易县| 青田县| 沙田区| 昔阳县| 太仆寺旗| 芒康县| 弋阳县| 连南| 鹤山市| 阳东县| 定襄县| 海南省| 宣武区|