0

フォームに入力ボックスを使用せずにいくつかの手順を説明するために、独自のテキストを追加しようとしています。これを行うことは可能ですか?テキストである必要がある行は次のとおりです。

<p>For a new location please add an entry</p>

タグなしで試してみました<p>が、やはり成功しませんでした。これが非常に単純化されているように見える場合は申し訳ありませんが、w3schools、このサイト、または単にGoogle検索でこれについて何も見ませんでした.

<form action="insert.php" method="post">
Name <input name="name" type="text">
<br>
Email address of user <input name="email" type="text">
<br>
Phone Number <input name="phone" type="text">
<br>
Town <input name="town" type="text">
<br>
County <select name="county">
<option>    Outside Ireland </option>
<option>    Antrim  </option>
<option>    Armagh  </option>
<br>
<p>For a new location please add an entry</p>
<br>
Name of New Location <input name="newlocation" type="text">
<br>
Name of Location <input name="location" type="text">
<br>
Link in Google Maps <input name="gmapslink" type="text">
<br>
<input type="submit">
</form>
4

2 に答える 2

0

placeholder属性を使用してこれを実現できます

<input
  type="text"
  name="ds_email"
  placeholder="Please, enter your e-mail here"
/>
于 2013-04-05T18:16:05.193 に答える
0

ボックスにプリセットのテキスト入力があるということですか?私はそれが value="desired value:

元。 input name="town" value="Text Desired" type="text"

于 2013-04-05T18:04:43.187 に答える