我想在一个简单的文本输入表单旁边混合一个静态值。所以它看起来像,例如:[static]What do you think about[/static] [user info]...[/userinfo]。我想出了这个:
<p style="display:inline;">What Is It Like To Be</p>
<div>
<input name="post_title" type="text" id="topic" class="input" size="50" maxlength="100" tabindex="1" placeholder="<?php echo $_GET["pr"];?>" style="padding-left:45px; " style="display:inline;"/>
</div>
所以,我确实得到了与输入表单内联的静态“前缀”,但我想让静态文本看起来“像”它是表单的一部分。就像一个静态的“占位符”标签。
多谢你们 :)