gpt4 book ai didi

javascript - jquery内容不显示在html表格中

转载 作者:行者123 更新时间:2023-12-03 02:36:19 25 4
gpt4 key购买 nike

在我的 php 页面中,我正在查询数据库表,结果以 html 表格式显示。数据库表的一个字段包含 <script>代码和注释行以及其他代码。例如:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr>
<td>
<!-- STORES html -->

<!-- Start: Code -->
<script type="text/javascript">
console.log("testing");

if ( $.inArray( 'apple', ["apple", "orange", "grapes"]) > -1 ) { // fruits
console.log("found");
} // fruits
</script>
<!-- End: -->
</td>
<td>row2</td>
</tr>

</table>

<td>的数据包含 jquery 内容的内容未显示。我已在 jsfiddle 中添加了代码.

谁能帮我解决这个问题吗?提前致谢。

最佳答案

PHP页面中使用htmlentities()函数

用途:

$myCode = "" //Your code from the database will be stored in this variable
echo htmlentities($myCode); //outputs the code on page instead of executing it

链接:https://www.w3schools.com/php/func_string_htmlentities.asp

关于javascript - jquery内容不显示在html表格中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48523135/

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