admin管理员组文章数量:1345418
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 badges1 Answer
Reset to default 7function 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)
本文标签: jqueryjavascript prompt inputStack Overflow
版权声明:本文标题:jquery - javascript prompt input - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766575a2535334.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论