我必须创建一个模态窗口来显示弹出窗口或模态窗口,以获取用户对我们的Intranet的反馈。这个窗口应该有一个复选框,上面写着“不要再问这个问题”。 我尝试使用jquery创建此窗口但我不明白该怎么做。我甚至试图谷歌但没有得到正确的答案。任何人都可以帮我这个。 我是jquery的新手。我已经看过许多网站,他们已经创建了模态窗口,但他们使用的是PHP,我不能。请为此帮助我使用jquery,jsp或javascript代码。 附有用例文档的屏幕截图。 任何帮助表示赞赏。提前致谢。 附:我正在使用websphere门户网站。
抱歉图片不允许..
下面提到的代码也很有效。 Plz的帮助。
<html>
<head>
<%@page session="false" contentType="text/html" pageEncoding="ISO-8859-1" import="java.util.*,javax.portlet.*,com.ibm.accessitservicesfeedbackpopup.*" %>
<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
<%@taglib uri="http://www.ibm.com/xmlns/prod/websphere/portal/v6.1/portlet-client-model" prefix="portlet-client-model" %>
<portlet:defineObjects/>
<link rel="stylesheet" type="text/css" href="<%= renderRequest.getContextPath() %>/style.css"/>
<link rel="stylesheet" type="text/css" href="<%= renderRequest.getContextPath() %>/jqModal.css"/>
<script language="javascript" type="text/javascript" src="<%= renderRequest.getContextPath() %>/jqModal.js"></script>
<script language="javascript" type="text/javascript">
function confirm(msg,callback) {
$('#confirm')
.jqmShow()
.find('p.jqmConfirmMsg')
.html(msg)
.end()
.find(':submit:visible')
.click(function(){
if(this.value == 'yes')
(typeof callback == 'string') ?
window.location.href = callback :
callback();
$('#confirm').jqmHide();
});
}
$().ready(function() {
$('#confirm').jqm({overlay: 88, modal: true, trigger: false});
// trigger a confirm whenever links of class alert are pressed.
$('a.confirm').click(function() {
confirm('About to visit: '+this.href+' !',this.href);
return false;
});
});
</script>
</head>
<body>
<a href="#" class="jqModal">view</a> (confirm)
<!-- Confirm Dialog -->
<div class="jqmWindow" id="confirm">
<div id="ex3b" class="jqmConfirmWindow">
<div class="jqmConfirmTitle clearfix">
<a href="#" class="jqmClose"><em>Close</em></a>
</div>
<div class="jqmConfirmContent">
<p class="jqmConfirmMsg"></p>
<p>Continue?</p>
</div>
<input type="submit" value="no" />
<input type="submit" value="yes" />
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
你可以使用很好的jQuery对话框。只需下载jQuery和jquery ui(包括js和css)并将其包含到您的项目中。它完美地运作。