0

我必须创建一个模式窗口来显示一个弹出窗口或一个模式窗口来获取用户对我们 Intranet 的反馈。这个窗口应该有一个复选框,上面写着“不要再问这个问题”。我尝试使用 jquery 创建此窗口,但我不明白该怎么做。我什至尝试用谷歌搜索,但没有得到正确的答案。谁能帮我解决这个问题。我是 jquery 的新手。我见过很多网站,他们创建了模式窗口,但他们使用 php,我不能。请为此目的使用 jquery、jsp 或 javascript 代码帮助我。附上用例文档的屏幕截图。任何帮助表示赞赏。提前致谢。ps 我正在使用 websphere 门户。

抱歉,图片不被允许。。

下面提到的代码也不起作用。请帮忙。

    <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> 
4

1 回答 1

0

There is nice jQuery dialog you can use. Just download jQuery and jquery ui (both js and css) and include to your project. It works prefectlly.

于 2012-06-14T09:15:59.160 回答