如何一起提醒和确认?

时间:2017-03-04 11:04:16

标签: javascript prompt

如何一起提示,提醒和确认? 我已经得到了这个,但我想在提示和提醒后添加一个确认框。 有人可以帮忙吗?

<script>

var name = prompt('What is your name?')

alert('Your name is ' + name )

2 个答案:

答案 0 :(得分:0)

正如帕特里克在评论中建议的那样,你需要使用确认而不是提醒,单击确认确定会给你价值:是的,即

<script>

var name = prompt('What is your name?');

var confirm = confirm('Your name is ' + name );

if(confirm === true){

 //Your code goes here
}

答案 1 :(得分:0)

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">Try it</button>


<script>
function myFunction() {
    var name = prompt("Please enter your name", "XYZ");

    if (name != null) {
       alert('Your name is ' + name )


    }
}
</script>

</body>
</html>

它会询问你的名字,并在提名后提醒。