2
私は入力フィールドを作成しています。指示がクリックされると自動的に非表示になります。私はそれをすることができましたが、長い文章が正しく表示されていないことがわかりました。私はCSSでラップコードを試みたが運がない。ここで入力フィールドのテキストをjQueryでラップする
はコードです:
.replybox{}
.reply-control{
border:1px solid #ccc;
background: transparent;
font-size:20px;
width:100%;
height:100px;
color:#8d8d8d;}
<input class="reply-control" name="replybox" onblur="if (this.value == "") {this.value = "How to wrap this text? It is hiding the overflown text. I am not finding any way. Please help";}" onfocus="if (this.value == "How to wrap this text? It is hiding the overflown text. I am not finding any way. Please help") {this.value = "";}" value="How to wrap this text? It is hiding the overflown text. I am not finding any way. Please help" type="text"/>
JSFiddle
here。
テキストエリアを使用できますか? – Chris
プレースホルダテキストを作成しようとしていますか?ネイティブのプレースホルダタグを使用して簡単に行うことができます。 –
しかし、テキストエリアではjQueryコードは機能しません...実際のコードを表示します – Nilot