htmx-js-api
Use the htmx JavaScript API for imperative integration in server-rendered apps. Use when calling htmx.ajax, htmx.process, htmx.trigger, htmx.on, htm…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
htmx JS API
Use this skill when declarative attributes are not enough. Prefer attributes first; reach for the JavaScript API to integrate with third-party widgets, dynamically injected markup, instrumentation, or programmatic request flows.
Decision Rule
Use htmx attributes when the behavior is visible in the HTML and tied to one element. Use the JS API when:
- markup is inserted by non-htmx code and needs htmx processing;
- an external library needs to trigger an htmx request or event;
- event listeners must be registered centrally;
- debugging requires htmx logging;
- configuration must be set once during startup.
Startup Configuration
Set global config once before relying on htmx behavior. Common examples:
- history behavior;
- default swap style or delay when project-wide;
- request timeout;
- scroll/focus behavior;
- security-sensitive options reviewed with
htmx-security.
Keep config close to where htmx is loaded so there is one source of truth.
DOM Helpers
Use htmx DOM helpers for concise integration code:
| Need | Methods |
| --- | --- |
| Find one element | htmx.find, htmx.closest |
| Find many elements | htmx.findAll |
| Remove an element | htmx.remove |
| Add a class | htmx.addClass |
| Remove a class | htmx.removeClass |
| Toggle a class | htmx.toggleClass |
| Make one element selected | htmx.takeClass |
Do not use helper calls to hide complex UI state that belongs in a component or server response.
Events
- Use
htmx.onfor delegated or global listeners. - Use
htmx.offwhen unregistering listeners from code that can mount/unmount. - Use
htmx.triggerto bridge plain JavaScript events into htmx behavior. - Use
htmx.onLoadfor behavior that must run on newly loaded htmx content. - Prefer custom domain events for product interactions.
Example:
htmx.on("saved", function (event) {
console.info("Saved", event.detail);
});
htmx.trigger("#results", "filters:changed");
Programmatic Requests
Use htmx.ajax when code needs to initiate an htmx request while preserving htmx swap semantics.
htmx.ajax("GET", "/notifications", {
target: "#notifications",
swap: "innerHTML"
});
Before using htmx.ajax, ask whether a real link, button, or form with htmx attributes would be clearer and more accessible.
Processing Dynamic Markup
Use htmx.process(element) after non-htmx code injects markup that contains htmx attributes.
const panel = document.querySelector("#panel");
panel.innerHTML = htmlFromTrustedSource;
htmx.process(panel);
Only process trusted markup. If markup includes user content, review sanitization with htmx-security before insertion.
Logging And Debugging
- Use
htmx.logAll()temporarily while diagnosing event/request behavior. - Use
htmx.logNone()after debugging. - Use a custom
htmx.loggerfor structured local diagnostics. - Remove noisy logging before shipping unless the project has a deliberate debug mode.
Extensions And Transports
Use extension APIs only when a documented htmx extension or project-specific integration requires it. For WebSocket and SSE work, prefer htmx-realtime for transport design before writing extension code.
Avoid
- Do not reimplement htmx with
fetch()plusinnerHTML. - Do not process untrusted HTML.
- Do not bind duplicate event listeners every time a fragment loads.
- Do not use imperative requests just to avoid writing a small form or link.
- Do not change global
htmx.configfrom feature code after the app has started.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/LVTD-LLC/skills/skills/htmx-js-api/SKILL.md