gpt4 book ai didi

javascript - htmx: onLoad: "on full page load"和 "on after swap"

转载 作者:行者123 更新时间:2023-12-04 12:55:40 40 4
gpt4 key购买 nike

我想初始化一个 select tom-select Example 中的元素用我自己的方法:

<select id="select-repo" placeholder="Pick a repository..." multiple></select>
function my_select_init(el) {
new TomSelect(el, {
persist: false,
createOnBlur: true,
create: true
})
}
有两种不同的方式:
案例 1:加载整个页面
在这种情况下,您可以使用一种现代 onLoad 方法。
例如:
document.addEventListener('DOMContentLoaded', function () {
// do something here ...
}, false);
案例 2:片段通过 htmx 插入 DOM
如何初始化片段?
首选解决方案
我希望 HTML 和加载代码位于一个位置 ( Locality of Behaviour ),并且我希望此 html 片段在两种情况下都相同。
到目前为止,我不使用 Hyperscript 或 Alpine.js,但我愿意使用这些库之一,如果这使解决方案更简单的话。

最佳答案

您要使用的是htmx.onLoad打回来:

  htmx.onLoad(function(elt) {
// look up all elements with the tomselect class on it within the element
var allSelects = htmx.findAll(elt, ".tomselect")
for( select of allSelects ) {
new TomSelect(select, {
persist: false,
createOnBlur: true,
create: true
});
}
})
当页面在 body 上加载时,此 javascript 将首先执行。元素,然后是 htmx 添加到页面的所有新内容。
https://htmx.org/docs/#3rd-party

关于javascript - htmx: onLoad: "on full page load"和 "on after swap",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67988846/

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