我尝试在JavaScript中使用alert()和confirm()。
<!DOCTYPE html>
<html>
<head>
<title>
My Website
</title>
</head>
<body>
<br/>
<br/>
<br/>
<br/>
<h2 align=center>My Website</h2>
<p align=center> <button onclick=“myFunction()”>click to enter</button> </p>
<script type=text/javascript>
function myFunction() {
alert(“u sure?”);
}
</script>
</body>
</html>
在你指出它之前,不,引号会在我的网站上出现问题。 我在另一台计算机上尝试过与此类似的东西并且它有效。 它只是我的电脑吗?
答案 0 :(得分:0)
问题可能出在您的双引号上。 “
应为"
:
function myFunction() {
alert("u sure?");
}
<p align=center> <button onclick="myFunction()">click to enter</button> </p>