gpt4 book ai didi

javascript - 无法在警告框中添加中断

转载 作者:太空宇宙 更新时间:2023-11-03 20:30:24 26 4
gpt4 key购买 nike

我在没有使用“form”标签的情况下创建了这种形式的东西

我需要在 Hello ____ 之间的警告框中添加中断 您的电子邮件地址是:.可以吗?我试过 br 标签和\n 但似乎没有任何效果

<head>

<title>Welcome Sheet</title>

</head>

<body>

<h1> Form Details</h1>

名字

<br>

<input type="text" id="fname" placeholder="eg.John">

<br><br>

姓氏

<br>

<input type="text" id="lname" placeholder="eg.Doe">

<br><br>

电子邮件地址

<br>

<input type="email" id="email" placeholder="eg.johndoe@example.com">

<br><br>


<button onclick="myFunction()">Submit</button>

<script>

function myFunction() {
alert("Hello" + " " + document.getElementById("fname").value+ " " + document.getElementById("lname").value +" "+ "Your email address is:" + " " + document.getElementById("email").value);
}

</script>

</body>

最佳答案

\n 帮你换行。

alert("Hello\nNew Line\nAnother line");

关于javascript - 无法在警告框中添加中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43465407/

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