gpt4 book ai didi

jquery .load() 动态定位的 url

转载 作者:行者123 更新时间:2023-12-01 01:17:22 25 4
gpt4 key购买 nike

我有

<div><a class='link' href='index.php' data-container='target'>Load</a></div>
<div class='target'></div>

我需要编写 jquery 代码,将 href url 加载到数据容器属性

$('.link').click(function(e) {
e.preventDefault();
$(this.data-container).load(this.href);
});

最佳答案

像这样使用数据:

$('.link').click(function(e) {
e.preventDefault();
$('.' + $(this).data('container')).load(this.href);
});

关于jquery .load() 动态定位的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11268639/

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