有谁知道您是否可以在包含在 jQuery 模态对话框中的文本输入上使用 jQuery 气球?
<div id="dlg-clock_in_out">
<section class="roundbox-sml" style="padding:5px; 5px;">
<input type="hidden" name="empid" id="empid" value="" />
<div style="width:100%; text-align:center;">
<label for="pin">PIN: </label><input type="password" name="pin" id="pin" maxlength="4" size="5" value="" />
</div>
<div id="login-btns-wrapper">
<input type="button" id="loginSubmit" class="buttons roundbox-sml" value="<?=$btn_text?>" />
<input type="button" class="buttons roundbox-sml" name="loginCancel" id="loginCancel" value="Cancel" />
</div>
</section>
</div>
<script type="text/javascript">
$('#pin').keypress(function(e) {
if(check_pin_chars(String.fromCharCode(e.which))) {
$(this).val('');
$(this).balloon({
position : "top right",
showDuration : 125,
minLifetime : 2000,
tipSize : 4
});
$(this).showBalloon();
}
});
我想在显示此模式对话框时使用的 jquery 应该在输入字段旁边放置一个气球,但我不知道气球是否可以存在于 jquery 模式对话框中的元素上。
有谁知道这是否可能?我知道如何为标准表单输入元素做到这一点。它只是没有出现在我的模态对话框中。
这是我试图用来完成此任务的方法。http://file.urin.take-uma.net/jquery.balloon.js-Demo.html
谢谢。