gpt4 book ai didi

javascript - Ajax:ajax 响应中的链接不起作用

转载 作者:行者123 更新时间:2023-12-02 16:17:45 24 4
gpt4 key购买 nike

我已经尝试了所有建议的可能解决方案,但它仍然不适合我。

我正在使用 ajax 调用 PHP 页面(例如 livesearch.php),从索引页面获取实时搜索结果。

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$("#livesearch").on("click", "a.alert", function() {
alert("here");
});
</script>
<script>
function showResult(str) {
if (str.length == 0) {
$("#livesearch").empty();
$("#livesearch").css('display', 'none');
return;
}

$.ajax({
type: "GET",
url: "livesearch.php?q=" + str,
success: function(responseText) {
$("#livesearch").html(responseText);
$("#livesearch").css('display', 'block');
$("#livesearch").css('background', '#fff');
}
});
}
</script>
</head>
<body>
<form>
<input type="text" size="30" onkeyup="showResult(this.value)" onblur="showResult('')" placeholder="search here">
<div id="livesearch" style="height:500px;width:900px;overflow-y:scroll;display:none;z-index:99999;"></div>
</form>
<div id="gentext" style="position:fixed;top:40px;z-index:-1;">This is just a dummy text to check if result div overshadow this line or not.</div>
</body>
</html>

它工作正常并列出可能的搜索。现在,用户可以从搜索结果中单击页面进行浏览 - 简单。一旦单击链接,我就想捕获该链接并进行一些处理。请参阅上面代码中的以下部分:

$("#livesearch").on("click", "a.alert", function() {
alert("here");
});

首先,我正在测试,是否能够捕获从 ajax 搜索返回的此链接的点击 - 所以警报(“此处”),但它不起作用。

请帮忙

最佳答案

添加链接后定义点击方法:

success: function(responseText)
{
$("#livesearch").html(responseText);
$("#livesearch").css('display', 'block');
$("#livesearch").css('background', '#fff');
$("#livesearch").on("click", "a.alert", function()
{
alert("here");
});
}

关于javascript - Ajax:ajax 响应中的链接不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29420796/

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