我有一个提醒,让用户知道他们的选择已刷新。我想知道的是如何在文本标签而不是弹出警报窗口中显示选择更改,以指示环境正在加载并且环境已加载。谢谢。
<section id="scripts">
<script type="text/javascript">
$('#Areas').change(function ()
{
****Help-Environment is loading***
Application.Refresh();
****Help-Environment is loaded***
});
</script>
</section>
答案 0 :(得分:0)
您可能要做的是在页面上设置一个默认为display: none;
的警报元素,然后在更改时更改其内容并显示属性。
<强> HTML 强>
<div id="alert" style="display: none;></div>
<强> JS 强>
$('#Areas').change(function ()
{
var alert = $('#alert');
alert.html('Your Selection Changed!');
alert.show();
});
这是一个尽可能基本的例子,应该很容易用一些CSS + jQuery扩展
答案 1 :(得分:0)
使用jqModal或类似的。 https://github.com/eyoosuf/jqModal 它专为此目的而设计。