gpt4 book ai didi

php - jQuery html() 和 &

转载 作者:可可西里 更新时间:2023-10-31 23:00:22 24 4
gpt4 key购买 nike

我正在人员列表中进行搜索。我希望它能即时显示结果,它确实做到了。但是我需要一个链接,它应该如下所示:

chatid=18&userid=45&create=new

但是通过这个显示结果之后:

$.get('/ajax.php', {sec: 'search_users', ajax: 1, search_for: $(this).val()}, function(data)
{
$(".rBoxContentStaff").html(data);
});

我得到这个结果:

chatid=18&userid=45&create=new

而且链接失效了。这似乎发生在 html() 和 append() 中。

我找不到解决办法,所以我不得不更改链接的触发方式。

最佳答案

你说你正在尝试正确设置链接路径?
如果是这样试试这个

$(".rBoxContentStaff").attr("href", data);

.html() 将 & 更改为 html & (&) 但使用 .attr("href")设置链接路径,它也适用于 &s

关于php - jQuery html() 和 &,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1400332/

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