javascript alert和confirm怎么在HTML里面使用

javascript alert和confirm怎么在HTML里面使用,第1张

警告框的例子:<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 show_confirm()

{

var r=confirm("Press a button!")

if (r==true)

{

alert("You pressed OK!")

}

else

{

alert("You pressed Cancel!")

}

}

</script>

</head>

<body><input type="button" onclick="show_confirm()" value="Show a confirm box" /></body>

</html>

<input id="content" type="text" />

<input type="button" id="btn" value="ok" onclick="show()">

<script>

function show()

{

var oText=document.getElementById("content")

var oP =document.createElement("p")

oP.innerHTML=oText.value

document.body.appendChild(oP)

}

</script>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11637435.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存