最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - javascript prompt input - Stack Overflow

programmeradmin0浏览0评论
function show_prompt()
{
var name=prompt("Please enter your name");

}

I am calling this function when a button is clicked before submitting the form.

How would I post the 'name' var with form so I can use it with php?

Also, would it be possible to verify the user input before letting it to be submitted? For example to make sure it's at least 4 characters? The user should not be able to click the button before the input meets the criteria. I'm guessing that is not possible, at least with the alert() function. Or could it display another alert message if the input is invalid and re-prompt?

function show_prompt()
{
var name=prompt("Please enter your name");

}

I am calling this function when a button is clicked before submitting the form.

How would I post the 'name' var with form so I can use it with php?

Also, would it be possible to verify the user input before letting it to be submitted? For example to make sure it's at least 4 characters? The user should not be able to click the button before the input meets the criteria. I'm guessing that is not possible, at least with the alert() function. Or could it display another alert message if the input is invalid and re-prompt?

Share Improve this question edited Feb 17, 2012 at 16:54 gen_Eric 227k42 gold badges303 silver badges342 bronze badges asked Feb 17, 2012 at 16:50 dominodomino 7,34513 gold badges39 silver badges50 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 7
function show_prompt() {
    var name;
    do {
        name=prompt("Please enter your name");
    }
    while(name.length < 4);
    $('#myinput').val(name);
}

This will prompt until a name with at least 4 chars is found and will afterwards write it into the Input with the ID myinput.

Demo: http://jsfiddle/xy829/ (The input of course can be hidden as well)

发布评论

评论列表(0)

  1. 暂无评论