我正在使用Jquery simpleDialog。我正在看fidler,它告诉我它正在成功加载js文件。我在视图中正确引用文件,然后拨打正确的电话。我在我的智慧结束,我不知道该怎么做。在过去的几个小时里,我一直在查看这段代码,但我无法让它变得更好。
<asp:Content ID="Content3" ContentPlaceHolderID="HeadContent" runat="server">
<link href="<%=ResolveClientUrl("~/Content/simpleDialog/jquery.simpledialog.0.1.css")%>" rel="stylesheet" type="text/css" />
<script src="<%=ResolveClientUrl("~/Scripts/simpleDialog/jquery.simpledialog.0.1.js")%>" type="text/javascript"></script>
<script src="<%=ResolveClientUrl("~/Scripts/simpleDialog/jquery.form.js")%>" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('a.tempDlg1').simpleDialog({
opacity: 0.3,
duration: 200,
width: 950,
useTitleAttr: true,
closeLabel: '<img src="../../Content/simpleDialog/CloseButton2.gif" border="1"/>',
showCloseLabel: true
});
</script>
simpleDialog窗口无法打开。 UIDialog的效果更好吗?我在这个对话框里面有datePicker。这会影响它吗?我不知道,我已经连续工作了16个小时。我需要一些睡眠。
答案 0 :(得分:0)
你错过了结束
});
表示$(document).ready(function() {
块。