How to get input via a popup and place text in a variable via javascript/jquery

前端 未结 2 1545
误落风尘
误落风尘 2021-02-08 20:49

I have a button on my page. When clicked a popup box should appear allowing the user to enter text. When OK/Submit is pressed, my jscript will then perform some functions usin

2条回答
  •  南方客
    南方客 (楼主)
    2021-02-08 21:02

    in it's simplest form, you could use prompt(question, default): (taken from w3schools: http://www.w3schools.com/js/tryit.asp?filename=tryjs_prompt)

    function myFunction(){
        var x;
        var name=prompt("Please enter your name","Harry Potter");
        if (name!=null){
           x="Hello " + name + "! How are you today?";
          alert(x);
       }
    }
    

    anything else would require lots of javascript & CSS to create layers with buttons and click events on those buttons

提交回复
热议问题