我正在建立一个网站,背景将是一张大照片(室内设计公司)所以图片非常重要。这就是为什么我一直试图制作一个临时文本框,以便主页上的人会看到一个暂时欢迎的消息或者其他但我真的不知道如何开始或者我应该用什么语言才能做到这一点。
我希望有人能帮助我开始。或者在哪里/我需要搜索
提前致谢
答案 0 :(得分:0)
使用alert
方法简单。
示例:
<html>
<head>
<script type="text/javascript">
function display_alert()
{
alert("Welcome to the site!");
}
display_alert();
</script>
</head>
<body>
</body>
</html>
或使用jquery的hide
方法
例如:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("input").click(function() {
$(this).hide();
});
});
</script>
</head>
<body>
<input value="Welcome to the Site!">
</body>
</html>