在输入中显示内容

时间:2011-02-03 04:10:16

标签: php

我有锚标签和输入标签

<a href="example.com">Go to Example.com</a>

&lt;a href="example.com"&gt;Go to Example.com&lt;/a&gt;

现在我需要在输入框中显示上面的文字

<input type="text" value="<a href="example.com">Go to Example.com</a>">

但它不起作用,我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

将引号更改为html实体:

&quot;

<input type="text" value="<a href=&quot;example.com&quot;>Go to Example.com</a>">

答案 1 :(得分:0)

<input type="text" value="<a href=&quot;example.com&quot;>Go to Example.com</a>">