我有一个 textarea,由于某种原因,当我尝试在我的 textarea 的左括号和右括号之间添加文本时,无论我使用 html 内容还是 php 回显内容,它都不会显示。
如果我将内容放在占位符中,它会起作用,有人知道为什么会这样吗?
<form action="includes/changebio.php" method="post" id="form1">
<textarea id="bio" style="width: 440px;
margin-top:3px;
text-align:left;
margin-left:-2px;
height: 120px;
resize: none;
outline:none;
overflow:scroll;
border: #ccc 1px solid;"
textarea name="bio" data-id="bio"
maxlength="710"
placeholder="<?php echo stripslashes($profile['bio']); ?>" rows="10">
</textarea>
<input type="image" src="assets/img/icons/save-edit.png"
class="bio-submit" name="submit" value="submit" id="submit"/>
</form>