jQuery动态修改placeholder

并不是兼容IE浏览器,而是在谷歌下显示placeholder="请输入用户名"调用js之后placeholder="请输入企业名"这样可以实现吗?... 并不是兼容IE浏览器,而是在谷歌下显示 placeholder="请输入用户名" 调用js之后 placeholder="请输入企业名"这样可以实现吗? 展开
 我来答
兔丞飞
高粉答主

推荐于2019-08-27 · 专注娱乐 专注娱乐 专注娱乐
兔丞飞
采纳数:25 获赞数:19893

向TA提问 私信TA
展开全部

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>表单</title>

<script src="jquery-1.8.0.min.js"></script><!--请引入jq库-->

<style type="text/css"></style>

<script>

$(function(){

var inp = $('#inp');

inp.focus(function(){

$(this).attr('placeholder','请输入企业名')

})

})

</script>

</head>

<body>

<input type="text" id="inp" placeholder="请输入用户名">

</body>

</html>

扩展资料

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<title>XXX</title>

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<script language="JavaScript" src="../js/jquery-1.4.2.js"></script>

<style type="text/css">

div,span{

width: 140px;

height: 140px;

margin: 20px;

background: #9999CC;

border: #000 1px solid;

float:left;

font-size: 17px;

font-family:Roman;

}

div.mini{

width: 30px;

height: 30px;

background: #CC66FF;

border: #000 1px solid;

font-size: 12px;

font-family:Roman;

}

</style>

<!--引入jquery的js库-->

</head>

<body>

<input type="text" placeholder="用户邮箱/手机号/用户名"  id="b1"/><br>

<input type="password" value=""  id="b2"/><br>

<input type="button" value="登陆"  id="b3"/>

<br>  

</body>

<script language="JavaScript">

$("#b1").focus(function(){

$(this).attr('placeholder',"");

});

$("#b1").blur(function(){

if($(this).val()==""){

$(this).attr('placeholder','${sessionScope.xxxxxxx}');

}

});

</script>

</html>

参考资料:jQuery官网 jQuery.html

闳广称景天
2019-03-09 · TA获得超过3701个赞
知道大有可为答主
回答量:3155
采纳率:34%
帮助的人:197万
展开全部
<!DOCTYPE
html>
<html
lang="en">
<head>
<meta
charset="UTF-8">
<title>表单</title>
<script
src="jquery-1.8.0.min.js"></script><!--请引入jq库-->
<style
type="text/css"></style>
<script>
$(function(){
var
inp
=
$('#inp');
inp.focus(function(){
$(this).attr('placeholder','请输入企业名')
})
})
</script>
</head>
<body>
<input
type="text"
id="inp"
placeholder="请输入用户名">
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
268023
推荐于2017-10-08 · TA获得超过224个赞
知道小有建树答主
回答量:63
采纳率:100%
帮助的人:29.7万
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单</title>
<script src="jquery-1.8.0.min.js"></script><!--请引入jq库-->
<style type="text/css"></style>
<script>
$(function(){
var inp = $('#inp');
inp.focus(function(){
$(this).attr('placeholder','请输入企业名')
})
})
</script>
</head>
<body>
<input type="text" id="inp" placeholder="请输入用户名">
</body>
</html>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yugi111
2014-11-28 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
$(':text').attr('placeholder','');
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2018-05-04
展开全部
$("选择器").val("").prop("placeholder"," ...");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式