我对 jquery 非常熟悉,所以不要太苛刻。这是我正在尝试使用的 jsfiddle http://jsfiddle.net/RBKaZ/。我收到一条错误$("#dialog").dialog({
消息:
对象不支持此属性或方法。
此外,Div 的显示与 jsfiddle 不同。
这是我的页面:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default4.aspx.vb" Inherits="Default4" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script src="Scripts/jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$("#dialog").dialog({
autoOpen: false,
buttons: {
Ok: function () {
$("#nameentered").text($("#name").val());
$(this).dialog("close");
},
Cancel: function () {
$(this).dialog("close");
}
}
});
$("#open").click(function () {
$("#dialog").dialog("open");
})
</script>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div id="dialog">
<p>Please enter your name</p>
<textarea id="name"></textarea>
</div>
<label>Name entered: </label>
<label id="nameentered"></label>
<br />
<input type="button" id="open" value="Open Dialog" />
</form>
</body>
</html>
我从 jquery.com 下载了 jquery-1.9.1.js 并将其放在我的脚本文件夹中。在 jsfiddle 上,他们说他们使用 jquery UI 1.9.2。我错过了什么吗?提前感谢您的帮助。
编辑 我已经添加了这个,我摆脱了 object not supported 错误,但它仍然没有做任何事情。
<script src="Scripts/jquery-1.9.1.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-1.9.2.custom/js/jquery-ui-1.9.2.custom.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-1.9.2.custom/js/jquery-ui-1.9.2.custom.js" type="text/javascript"></script>