新手jquery用户这里。我希望打开一个模态时,输入聚焦/选择,并输入一个值,从一个按钮的输入模态。
事件应该是。1. 关注输入。2. 打开一个模态。3.通过使用按钮将值输入到输入中。4. 关闭按钮时关闭模式
许多谢谢。您需要prompt()
:
$('body').on('focus', 'input[name=myNameHere]', function(){
var input = prompt('The Question', 'Suggested answer');
$(this).val(input);
});
这可能就是你要找的:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script>
$(function() {
$( "#dialog" ).dialog({modal: true, autoOpen:false});
$("#result").focus(function () {
$( "#dialog" ).dialog("open");
});
$('#accept').click(function (){
$('#result').val($('#source').val());
$('#dialog').dialog("close");
});
});
</script>
</head>
<body>
<input type="text" id="result">
</div>
<div id="dialog" title="Basic dialog">
Enter value <input type="text" id="source" /><br/>
<input type="button" id="accept" value="OK" />
</div>
</body>
</html>