window.location.href='http://xxx.com';"; Web ページに直接表示されますが、js: アセンブリ コードは実行されません <スクリプト>window.loc"/> window.location.href='http://xxx.com';"; Web ページに直接表示されますが、js: アセンブリ コードは実行されません <スクリプト>window.loc">

ホームページ >バックエンド開発 >PHPチュートリアル >PHPでこのようなjsコ​​ードを出力する方法はありますか?解決方法

PHPでこのようなjsコ​​ードを出力する方法はありますか?解決方法

WBOY
WBOYオリジナル
2016-06-13 13:32:15830ブラウズ

php有办法实现像这样输出js代码?
比如有个变量值是这样的

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->$a = "<script>window.location.href='http://xxx.com';</script>";


在网页上是直接显示但不执行js:
Assembly code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><script>window.location.href='http://xxx.com';</script>


查看html源文件是这样:
HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->&lt;script&gt;window.location.href='http://xxx.com';&lt;/script&gt;


php有这种函数?还是要怎么转换?

------解决方案--------------------
echo htmlentities($a);
------解决方案--------------------
你这个是网页表单提交的吧?提交处理的代码里有过滤。
------解决方案--------------------
PHP code

$a = "<script>window.location.href='http://xxx.com';</script>";
$b = htmlspecialchars($a);
echo $b;
//result: <script>window.location.href='http://xxx.com';</script> 
//source: &lt;script&gt;window.location.href='http://xxx.com';&lt;/script&gt; <div class="clear">
                 
              
              
        
            </div>
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。