我想显示一个html弹出窗口,onChange从输入文本到另一个。
我该怎么做?
非常感谢。
答案 0 :(得分:1)
这是一个jQuery解决方案:
<form ...>
<input type="text" id="first"/>
<input type="text" id="second"/>
</form>
$(function ()
{
$('#first').blur(function ()
{
alert('show the popup here');
});
});
<强> Basic demo 强>
<强> window.open()
demo 即可。免责声明:此行为非常令用户烦恼。