我们如何编辑客户发送消息后生成的“ SENT”(JavaScript警报)?例如,“非常感谢您的留言,我们将尽快与您联系。”
答案 0 :(得分:0)
您可以使用以下代码。
<html>
<body>
<h2>JavaScript Alert</h2>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
alert("Thank you very much for your message, we will get back to you as soon as possible.");
}
</script>
</body>
</html>
我认为这对您非常有帮助。