溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

HTML5中placeholder屬性的介紹

發(fā)布時(shí)間:2021-08-25 18:33:49 來源:億速云 閱讀:172 作者:chen 欄目:web開發(fā)

這篇文章主要介紹“HTML5中placeholder屬性的介紹”,在日常操作中,相信很多人在HTML5中placeholder屬性的介紹問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”HTML5中placeholder屬性的介紹”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

代碼如下:


<input type="text" name="address" placeholder="請輸入常住地址...">


你要做的僅僅是添加一個(gè)placeholder屬性域,以及一些引導(dǎo)性的文字內(nèi)容,不需要額外的JavaScript腳本來實(shí)現(xiàn)這種效果,是不是感覺很棒?
測試 placeholder 的支持度
(注意這是2010年的文章,到現(xiàn)在,2013年,主流瀏覽器應(yīng)該都支持了.)
既然 placeholder 是一個(gè)新的功能,那么測試瀏覽器的支持是很有必要的。JS代碼如下:

代碼如下:


// 在JS中創(chuàng)建一個(gè)input元素,并判斷元素有沒有一個(gè)叫做placeholder的屬性
// 如果瀏覽器支持的話,那么在js里面引用的DOM就會(huì)存在這個(gè)屬性
function hasPlaceholderSupport() {
var input = document.createElement('input');
return ('placeholder' in input);
}


而如果瀏覽器不支持placeholder特性,那你就需要一個(gè)fallback策略來處理,比如MooTools,Dojo,或者其他JavaScript工具。(現(xiàn)在dojo可以用的少了,國內(nèi)更多的是jQuery和ExtJS。)

代碼如下:


/* jQuery 代碼,當(dāng)然,記得引入jQuery的庫哦*/
$(function(){
if(!hasPlaceholderSupport()){
// 獲取address元素
var $address = $("input[name='address']");
placeholder = $address.attr("placeholder");
// 綁定 focus事件
$address.bind('focus',function(){
if(placeholder == $address.val()){
$address.val('');
}
});
// 失去焦點(diǎn)事件
$address.bind('blur',function(){
if('' == $address.val()){
$address.val(placeholder);
}
});
}
});


placeholder 是瀏覽器另一個(gè)偉大的附加屬性用于取代js片段,你甚至可以編輯HTML5的placeholder樣式.
全部代碼如下:

代碼如下:


<!DOCTYPE HTML>
<html>
<head>
<title> HTML5 placeholder屬性演示 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="renfufei@qq.com">
<meta name="Description" content="original=http://davidwalsh.name/html5-placeholder">
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
// 在JS中創(chuàng)建一個(gè)input元素,并判斷元素有沒有一個(gè)叫做placeholder的屬性
// 如果瀏覽器支持的話,那么在js里面引用的DOM就會(huì)存在這個(gè)屬性
function hasPlaceholderSupport() {
var input = document.createElement('input');
return ('placeholder' in input);
}
/* jQuery 代碼,當(dāng)然,記得引入jQuery的庫哦*/
$(function(){
if(!hasPlaceholderSupport()){
// 獲取address元素
var $address = $("input[name='address']");
placeholder = $address.attr("placeholder");
// 綁定 focus事件
$address.bind('focus',function(){
if(placeholder == $address.val()){
$address.val('');
}
});
// 失去焦點(diǎn)事件
$address.bind('blur',function(){
if('' == $address.val()){
$address.val(placeholder);
}
});
}
});
</script>
</head>
<body>
<div>
<form method="post" action="">
<input type="text" name="address" placeholder="請輸入常住地址...">
<input type="submit" value="測試">
</form>
</div>
</body>
</html>

到此,關(guān)于“HTML5中placeholder屬性的介紹”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI