Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
准备用Modern.TiddlyDev开发插件,目标是制作一个目录的级联选择器,请问如何制作一个简单的微件,能实现点击按钮跳转到对应的条目
看下这里,不用js:https://zh-hans.tiddlyhost.com/#Custom Widgets
想用js看这:https://tiddly-gittly.github.io/Modern.TiddlyDev/#%24%3A%2Fplugins%2FModern.TiddlyDev%2Fdoc%2Ftutorials
看看中文教程上WikiText与JavaScript的交互的主题
从故事河中跳转到条目
new $tw.Story().navigateTiddler("$:/AdvancedSearch");
跳转到条目方法比较多, 比如直接用tm-navigate, wikitext 和 js都可以使用只是写法不同, 或者直接手动写a标签都可以, href使用 # + tite 就行
https://github.com/benwebber/tiddlywiki-plugins/blob/main/src/plugins/motion/files/startup/motion.ts 可以直接看这个了解一下