如何将HTML代码转换为PHP

时间:2018-05-14 15:48:30

标签: javascript php html

我希望将带有js的按钮链接从html转换为php

我添加了点击功能,当我在php中编写此代码时,onclick功能无法正常工作

HTML

<button onclick="document.getElementById('id01').style.display='block'" style="width:auto;">

</button>

Corephp

<?php 
    echo '<button onclick="document.getElementById("id01").style.display="block" " style="width:auto;">';
?>

 This php echo line not working that means that onclick function.

1 个答案:

答案 0 :(得分:1)

啊,我明白了。这是一个逃避问题。抱歉,我的第一条评论错过了标记(将其视为客户端/服务器端断开连接)并认为我劫持了您的问题。

<?php 
    echo '<button onclick="document.getElementById(\"id01\").style.display=\"block\" " style="width:auto;">';
?>

这些可能有所帮助:

Pass a PHP string to a JavaScript variable (and escape newlines)

How to escape string from PHP for javascript?