我希望将带有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.
答案 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)