gpt4 book ai didi

javascript - Ajax 请求未拉起 jQuery 对话框窗口

转载 作者:行者123 更新时间:2023-12-02 18:07:20 26 4
gpt4 key购买 nike

请查看此 jsFiddle ...

这是一个 jQuery UI 对话框,利用 ajax 请求来提取内容。我似乎不知道出了什么问题,但除了空白对话框之外什么也没有弹出。

HTML...

<div id="#griffin"></div>
<ul>
<li>
<a href="ajax/ajax-bj.html" class="griffin-style all-about-bj" id="all-about-bj"></a>
</li>
</ul>

JavaScript...

$(function() {
$("#griffin").dialog({
autoOpen: true,
modal: true,
width: 950,
height: 'auto',
show: 'fade',
hide: 'fade',
position: {my: "center top", at:"center top", of: window },
buttons: {
"I have Read and Understand": function() {
$(this).dialog("close");
}
}
});
$(".griffin-style").on("click", function(e) {
e.preventDefault();
$("#griffin").html("");
$("#griffin").dialog("option", "title", "Loading...").dialog("open");
$("#griffin").load(this.href, function() {
$(this).dialog("option", "title", $(this).find("h1").text());
$(this).find("h1").remove();
});
});
});

想法?

最佳答案

您必须在 buttons 参数下给出命令。

<强> http://jsfiddle.net/aEwUF/4/

  $(function() {
$( "#griffin" ).dialog({
resizable: false,
height:150,
modal: true,
buttons: {
"I have read and understand the terms": function() {
$( this ).dialog( "close" );
$("p").html("You have accepted the terms");
//write ajax requests in here..
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
});

关于javascript - Ajax 请求未拉起 jQuery 对话框窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19984834/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com