Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/csharp-4.0/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net 在页面上完整加载显示警报框_Asp.net_C# 4.0 - Fatal编程技术网

Asp.net 在页面上完整加载显示警报框

Asp.net 在页面上完整加载显示警报框,asp.net,c#-4.0,Asp.net,C# 4.0,我想在应用程序主页完全加载后显示一个警报框。使用jQuery libaray <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> 或 副本: $(function() { alert( "ready!" ); }); $( document ).ready(function() { alert( "ready!" ); });

我想在应用程序主页完全加载后显示一个警报框。

使用jQuery libaray

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>

副本:
$(function() {
    alert( "ready!" );
});
$( document ).ready(function() {
    alert( "ready!" );
});