4个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function showMessge(){
alert("这是测试啊");
if(confirm("这是测试啊2")){
alert("看到我了? 你一定点了确定按钮~");
}
}
</script>
<style type="text/css">
.btnDiv{border:1px dashed #666; width:100px; height:25px; line-height:25px; text-align:center; font-size:12px; color:#999}
</style>
</head>
<body>
<div class="btnDiv" onclick="showMessge()"> 有种你点我啊</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function showMessge(){
alert("这是测试啊");
if(confirm("这是测试啊2")){
alert("看到我了? 你一定点了确定按钮~");
}
}
</script>
<style type="text/css">
.btnDiv{border:1px dashed #666; width:100px; height:25px; line-height:25px; text-align:center; font-size:12px; color:#999}
</style>
</head>
<body>
<div class="btnDiv" onclick="showMessge()"> 有种你点我啊</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input type="button" value="提示" onclick="showinfo()">
<script language="javascript">
function showinfo(){
alert("提示信息。");
}
</script>
把alert(),也可以换成
confirm("提示信息。");
如果要求提示输入可用:prompt("提示信息。");
<script language="javascript">
function showinfo(){
alert("提示信息。");
}
</script>
把alert(),也可以换成
confirm("提示信息。");
如果要求提示输入可用:prompt("提示信息。");
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
第一种
<html>
<head>
<script type="text/javascript">
function disp_prompt()
{
var name=prompt("请输入您的名字","")
if (name!=null && name!="")
{
document.write("你好!" + name + " 今天过得怎么样?")
}
}
</script>
</head>
<body>
<input type="button" onclick="disp_prompt()" value="显示提示框" />
</body>
</html>
第二种:
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("这里是你要显示的提示信息")
}
</script>
</head>
<body>
<input type="button" onclick="disp_alert()" value="请点击" />
</body>
</html>
<html>
<head>
<script type="text/javascript">
function disp_prompt()
{
var name=prompt("请输入您的名字","")
if (name!=null && name!="")
{
document.write("你好!" + name + " 今天过得怎么样?")
}
}
</script>
</head>
<body>
<input type="button" onclick="disp_prompt()" value="显示提示框" />
</body>
</html>
第二种:
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("这里是你要显示的提示信息")
}
</script>
</head>
<body>
<input type="button" onclick="disp_alert()" value="请点击" />
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head></head>
<input type="button" onclick="alert('0')" value="请点击" />
<html>
<head></head>
<input type="button" onclick="alert('0')" value="请点击" />
<html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询