gpt4 book ai didi

javascript - 我如何在网站中像字符串一样显示 html 代码和 javascript

转载 作者:行者123 更新时间:2023-11-30 16:28:54 25 4
gpt4 key购买 nike

我想在网页中将此代码显示为文本类型。我使用的程序语言是PHP

<div>
<a href="js/index.html">Js</a></div>
<div><a href="php/index.php">PHP</a></div>
<div><a href="test/index.html">Test</a></div>
<input id="in" type="text">
<div class="">Off season <span id="out"></span> this</div>
<script src="js/assets/jquery.js"></script>
<script>
$("#in").keyup(function () {
var text = this.value;
$('#out').text(text);
})
</script>
</div>

最佳答案

HTML 转义

&lt;div&gt;
&lt;a href=&quot;js/index.html&quot;&gt;Js&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href=&quot;php/index.php&quot;&gt;PHP&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href=&quot;test/index.html&quot;&gt;Test&lt;/a&gt;&lt;/div&gt;
&lt;input id=&quot;in&quot; type=&quot;text&quot;&gt;
&lt;div class=&quot;&quot;&gt;Off season &lt;span id=&quot;out&quot;&gt;&lt;/span&gt; this&lt;/div&gt;
&lt;script src=&quot;js/assets/jquery.js&quot;&gt;&lt;/script&gt;
&lt;pre&gt;
$(&quot;#in&quot;).keyup(function () {
var text = this.value;
$(&#x27;#out&#x27;).text(text);
})
&lt;/pre&gt;
&lt;/div&gt;

关于javascript - 我如何在网站中像字符串一样显示 html 代码和 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33646154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com