我需要在自动加载页面时打开对话框。使用jquery做什么的方法是什么。没有任何用户交互来打开它。
我尝试了这段代码,但是工作
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen,projection" />
<script type="text/javascript" src="script/jquery-1.4.2.min.js"></script>
<link type="text/css" href="css/jquery-ui-1.8.1.custom.css" rel="stylesheet" />
<script type="text/javascript" src="script/jquery-ui-1.8.1.custom.min.js"></script>
<script type="text/javaScript">
$(function(){
$('#dialog').dialog({
autoOpen: true,
width: 600,
buttons: {
"Ok": function() {
$(this).dialog("close");
}
}
});
});
</script>
</head>
<%
if (session.getAttribute("user") == null) {
response.sendRedirect("index.jsp");
}
%>
<body>
<div id="wrap">
<div id="header">
</div>
<div id="leftside">
<h2 class="hide">Sample menu:</h2>
<ul class="avmenu">
<li><a href="dashboard.jsp" class="current">Dash Board</a></li>
<li><a href="createpoll.jsp">Create Poll</a></li>
<li><a href="availpoll.jsp">Vote Poll</a></li>
<li><a href="viewresults.jsp">View Results</a></li>
<li><a href="underconstruction.jsp">Settings</a></li>
<li><a href="logout">Log Out</a></li>
</ul>
</div>
<div id="contentwide">
<%@page import="com.jSurvey.entity.question" %>
<%@page import="com.jSurvey.controller.questionJpaController" %>
<%
//code to write data to database
%>
<div id="dialog"><p>Data Added successfully</p></div>
</div>
<div id="footer">
</div>
</div>
</body>
</html>
请帮忙。
答案 0 :(得分:4)
使用autoOpen: true,
在页面加载时直接打开
答案 1 :(得分:0)
尝试:
$(document).ready(function() {
// Your dialog code here
});
编辑: 你可以尝试的另一件事是$(body).load(function(){//你的对话在这里});如果这没有做任何事情,那么页面加载方式还存在其他一些潜在问题。