我在我们的网站上有一个把成员引向健康工具的链接。
我们将在90天内逐步淘汰这一工具,成员必须出口或打印他们掌握的所有数据,因为新系统无法整合数据。
我想做的是用一个 j子,说:
“我们正于2012年4月15日逐步取消这一工具。 请出口和(或)印刷你希望保留的数据,因为数据不再提供。
然后将有一个“科索沃”纽芬兰语,并将用户引向健康工具。
我安装并投入运作。
我看到了“ j宝”的docs,看到了示范方言,并在这个网站上看到了一个例子。
我把以下文字用在头:
<head>
<script src="/js/jquery-1.3.2.js" type="text/javascript"></script>
<script src="/js/ui.core.js" type="text/javascript"></script>
<script src="/js/ui.dialog.js" type="text/javascript"></script>
</head>
页: 1
<script type="text/javascript">
$(document).ready(function() {
$("#dialog").dialog({
autoOpen: false,
modal: true
});
});
$(".confirmLink").click(function(e) {
e.preventDefault();
var targetUrl = $(this).attr("href");
$("#dialog").dialog({
buttons : {
"Confirm" : function() {
window.location.href = targetUrl;
},
"Cancel" : function() {
$(this).dialog("close");
}
}
});
$("#dialog").dialog("open");
});
</script>
<div id="dialog" title="Confirmation Required">
Please confirm.
</div>
<a class="confirmLink" href="/health-tool.aspx">Link to Health Tool</a>
However, I get an error that says: "Object doesnt support this property or method" and references this line: $(document).ready(function() {
非常感谢你的协助。