问题标签 [kotlinx-html]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
kotlin - 我可以在 kotlin-js 中将 kotlinx.html 与文档一起使用吗?
现在我从事 kotlin-js 项目。我想在我的 index.html 中添加一些 HTML 标签。所以我想使用 kotlinx.html。在 kotlin-js 代码中使用 kotlinx.html 是否可用?
像这个
如果不是,请告诉我如何使用 kotlin-js 添加标签属性或 HTML 标签。
html - 使用 kotlinx.html 编写 HTML
我正在尝试使用 kotlinx.html 构建 html 布局页面。我可以创建主页,但在将其分解为由单独功能生成的部分时遇到问题。我不知道如何将在单独函数中创建的 html 包含到主文档中。
我在使用 unsafe 方面取得了成功,但我认为应该有更好的方法
我的单元测试看起来像:
它产生输出:
两个带有段落的 div 都丢失了
我正在运行这个服务器端(jvm)。我在js中找到了一些例子,但没有运气
我很想在某个地方为 kotlinx 找到更好的文档
html - How do I create the onClick function for a button with Kotlinx.html?
I am using Kotlin's html library kotlinx.html for dynamic html building.
I want to create a button which triggers a function when clicked. This is my current code:
This results in the following source code:
Which gives this error when clicked (from Chrome developer console):
I have tried several approves, and search for a solution - but could not find the proper documentation.