我希望我的提示框最多输入10个字符。如果用户按任意键,则不应输入任何文本。
目前我正在使用的代码使用条件来检查输入是否在限制范围内。如果它超出限制,它接受文本但会一直提示用户,直到输入在限制范围内。该值将分配给person1变量只有当输入在限制范围内时,代码才会继续前进。
我希望输入框不接受第一个位置本身的指定输入。
请帮忙。
代码如下:
person1=prompt("Please enter your data 1(Maximum limit 20)","Sample 1");
while(person1.length > 20){
alert("Keep the message length to 20 chars or less")
person1 = prompt("Please enter your data 1(Maximum limit 20)","Sample 1");
}
答案 0 :(得分:2)
所有我能想到的就是使用is ...而如果用户的文本超过指定的数量,则会再次出现提示。希望有所帮助。
var n = 0, msg = "Please enter your data 1(Maximum limit 20)";
do {
n++;
if(n > 1) msg = "You had too many characters! \nPlease enter your data 1(Maximum limit 20).";
person1=prompt(msg, "Sample1");
}
while (person1.length > 20)
答案 1 :(得分:2)
悲伤的消息我害怕 - 用prompt()
但是你可以使用jQuery Dialogs
做类似的事情您不必使用jQuery - 但可能需要了解一下。 基本上,这种方式你会有一个普通的HTML方法(所以你可以使用maxlength或javascript来限制输入)
如果您使用模态对话框,那么您将获得非常相似的效果。
答案 2 :(得分:1)
使用提示框无法完全解决此问题。要解决此问题,您必须创建一个 jQuery UI自定义对话框。
基本上你在这里制作一个文本框和两个按钮“确定”并在表格标签内“取消”并在Jquery中嵌入你的代码,使它们像提示框一样弹出......
我已经在此页http://jqueryui.com/dialog/#default上使用了具有默认功能的对话框作为我的基础......
最后给出了代码的说明..
以下是执行此操作的完整代码...
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script>
$(document).ready(function ()
{
$('#dialog').dialog({
autoOpen: false,
width: 250,
height: 180,
modal : true,
resizable: false,
show:"slow"
});
$('#put').click(function() {
$( "#dialog" ).dialog( "open" );
});
});
function getPdata( arg ) { //Function called when Cancel button is pressed
var f = document.getElementById( 'pForm' );
// exit immediately
close();
return;
}
function close(){
$( "#dialog" ).dialog( 'close' );
}
var cnt=1;
function getPdata1() { //function called when ok button is pressed
var f = document.getElementById( 'pForm' );
var n = $("input[name='name']").val();
alert(n.length);
if (n.length <= 10) {
$('<div />',{id:"div" + cnt }).html(n).appendTo('body'); //crated div will have an id as `div`+ count;
} else {
alert('the data you have enterd is not in limit.Please try again');
return;
}
close();
if (cnt < 5) {
f.name.value = "";
$("#dialog").dialog('open');
cnt++;
}
}
function show()
{
document.getElementById("but1").style.visibility="visible";
}
</script>
</head>
<body>
<div>
<button type="button" id="put" >Insert data</button>
</div>
<div id="dialog" title="Input Data"> <!--the actual contebts of dialog box-->
<form id="pForm" >
name: <input type="text" name="name" width='50' height='100' maxlength="10" placeholder="Fill in your data" /><br><br>
<input type="button" value="OK" onclick="getPdata1()" />
<input type="button" value="cancel" onclick="getPdata( this.value )" />
</form>
</div>
</body>
</html>
代码说明..
以上代码可以根据个人需要完全修改。希望这个答案很有帮助。如有任何疑问请随时询问..
答案 3 :(得分:0)
你不能。
避免使用prompt()
及其亲属alert()
和confirm()
。正如你所发现的那样,他们所能做的事情都非常有限;它们还经常阻止用户在浏览器中执行其他任务,例如切换到其他选项卡。对于类似的效果,您可以使用页内模式。有关此类例子,请参阅Bootstrap modals。