Jump to content
  • 0

При нажатии на элемент формы value очищается


shaltay
 Share

Question

Доброго времени.

подскажите, можно ли без яваскрипта сделать так чтобы при нажатии на элемент формы type=text с заранее написанным value=lalala, этот value стирался? т.е. нажал и сразу пишешь свой текст, не надо стирать ничего.

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Без яваскрпта? Гм, а в форме еще какие-то поля есть?

А допустим, если нет?

input type="reset"

;)

Правда заставить браузер после этого поставить снова фокус в инпут я смог только в вебките. И с помощью жуткого кода.

Аааа, я был невнимателен, value уже задан, и его нужно удалить. В таком случае совершенно точно без JS не получится.

Link to comment
Share on other sites

  • 0


<!DOCTYPE html>
<html>
<head>
<title>
prime
</title>
<style type='text/css'>
html, body{
margin:0;
height:100%;
width:100%;
position: relative;
}
form{
border: 1px dotted black;
width : 340px;
height: 320px;
font-size: 16px;
}
form input{
opacity: 0.7;
background: red;
display: block;
width: 100%;
line-height: 1;
position: relative;
z-index:1;
}
form input:focus{
opacity:1;
}
.text{
position: absolute;
top:0;
left:0;
/*z-index:0;*/
}
.outer{
position: relative;
}

</style>
</head>
<body>
<form>
<div class='outer'>
<div class='text'>
Some text
</div>
<input type='text' />
</div>
</form>
</body>
</html>

"..холодильник с пультом - просто мысль.."(с)

Link to comment
Share on other sites

  • 0

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>placeholder</title>
</head>
<body>
<form action="#">
<fieldset>
<input type="text" placeholder="Default value" />
</fieldset>
</form>
</body>
</html>

у меня навязчивое ощущение дежавю... в который раз создаётся тема "При нажатии на элемент формы value очищается", и лучшим, но не всегда первым ответом даётся placeholder...

http://forum.htmlbook.ru/index.php?showtopic=25847&st=0&p=193537&fromsearch=1entry193537

http://forum.htmlbook.ru/index.php?showtopic=26247&st=0&p=196685&hl=placeholder&fromsearch=1entry196685

люди поиском однако ленятся пользоваться. может этот вопрос уже заслужил место в ФАК?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy