在 JQuery BlockUI 消息中选择 div 容器
我使用此插件是为了在单击 时阻止 UI。但是我不想立即阻止 UI,而是 2 秒后。
尽管我已经定义了
。,但以下函数不起作用,因为无法找到
$('#processingData')
处理数据... html 正文中的
$(function() {
$('input[type=submit]').click(function() {
setTimeout(function() {
$.blockUI({
message: $('#processingData')
});
}, 2000);
});
});
I am using this Plugin in order to block the UI when <input type="submit">
is clicked. However I don't want to block UI immediately, but 2 seconds later.
The following function doesn't work because $('#processingData')
cannot be found, although I have defined <h3 id="ProcessingData" style="display:none">Processing Data...</h3>
in the html body.
$(function() {
$('input[type=submit]').click(function() {
setTimeout(function() {
$.blockUI({
message: $('#processingData')
});
}, 2000);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道这是否只是您问题中的拼写错误,但
processingData
和ProcessingData
并不相同。注意开头的大写P。难道不应该如此吗
?
Dunno if this is just a typo in your question, but
processingData
andProcessingData
is not the same. Notice the capital P at the beginning.And shouldn't it be
?