gpt4 book ai didi

javascript - 为什么 onclick 属性不起作用?

转载 作者:行者123 更新时间:2023-11-28 20:08:43 31 4
gpt4 key购买 nike

我正在尝试在 PHP 中创建一个类似于 JavaScript 的alert() 命令的函数,但是“确定”按钮的 onclick 属性不起作用!

这是我的代码:

<!DOCTYPE html>
<?php
function alert($title, $text) {
$html = '<div id="alert" style="background-color:lightGray; text-align:center; height:500px; width:500px; color: black; position:fixed; top: 50%; left:50%; margin-left:-250px; margin-top:-250px;">';
$html = $html . '<h1 style="background-color:red; border-radius: 15px;">'. $title . '</h1>' . $text;
$html = $html . '<br><br><button type="button" style="border-radius:25px; height:50px; width:100px; background-color:white; border:none;" onclick="document.getElementById(\"alert\").style.display=none">OK</button>';
echo $html;
}
alert('Testing', 'Testing <em>testing</em><b>123</b>');
?>

出了什么问题?我收到一个“警告框”,但“确定”按钮不起作用!

最佳答案

element.style.display = 'none' 而不是完全没有

ps只是想弄清楚javascript的概念

关于javascript - 为什么 onclick 属性不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20271719/

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