问题标签 [tritium]

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.

0 投票
3 回答
231 浏览

html - Absolutizing an image url with a ".."

I have an HTML document I'm transforming with an image whose source url looks like this:

I'm using a tritium function to absolutize image source urls, but the ".." seems to be stumping it. It's prepending the hostname, etc, but when it does, it adds one too many layers.

So for example, the correct URL of the image is:

But the page on which it appears is at "www.host.com/site/baz/page.html"

The source of the image in the original html is therefore "../foo/bar.png"

But the absolutized result I'm getting is: "www.host.com/site/foo/bar.png"

In other words it's going up the file tree to "/site/", but it needs to be going up one more. I don't really see how it even works on the original page without another ".." How should I be handling the ".." in the url?

0 投票
1 回答
55 浏览

mobile - 如何使用 Moovweb 从单个上游页面创建多个页面?

我只有一个页面,可以说:

http://en.wikipedia.org/wiki/Main_Page

但我想把它分成 3 页:

  • 一个只有侧边栏的页面
  • 一个“特色”页面,只有“绿色”部分(特色文章/你知道吗)
  • “新闻”页面仅包含“蓝色”部分(在新闻中/当天)

用氚做这个的最好方法是什么?

我想我想要的抽象功能是能够从一个页面创建多个页面。这对于更详细地组织移动页面可能很有用。另一个用例是构建一个 jqtouch 应用程序。

0 投票
1 回答
255 浏览

xpath - 使用 XPath 选择一组连续的 html 元素

我正在使用 Moovweb SDK,我想将我编写的 Tritium 函数应用于具有特定类名的每组连续元素。给定一个扁平的 html 元素层次结构,我应该如何只选择使用 XPath 出现在一行中的元素组?

重要的是我选择了连续元素组,而不仅仅是所有元素,因为我将根据它们相对于前面第一个的索引来应用类名和样式<h2>

0 投票
3 回答
105 浏览

moovweb - 如何将图片移动到 tririum 中的另一个 div

如果我有这样的事情:

如何将此图像移动到氚中的另一个 div?

0 投票
2 回答
343 浏览

moovweb - 在氚中,如何切换两个元素的位置?

我有两个彼此相邻的元素,如下所示:

切换两个子元素顺序的最快方法是什么?

0 投票
1 回答
272 浏览

moovweb - 在 Tritium 中,如何将 CSS 类设置为变量?

我正在使用 Moovweb SDK,并编写 Tritium 来修改我的 HTML。

如何将 CSS 类保存为变量?

我想抓取一个现有的类并将其应用于其他元素。

0 投票
1 回答
272 浏览

moovweb - Tritium 环境变量是什么?

在哪里可以找到氚变量的完整列表(例如$host$path$content_type等)?

0 投票
1 回答
297 浏览

css - 通过 Tritium 更改样式属性

新手问题,我正在处理一个简单的场景:使用 Tritium 在我的页面上更改背景颜色和给定元素的文本。我的页面如下所示:

在我的 .TS 文件中,我有以下内容:

上面成功地更改了文本,虽然没有保留任何格式,也没有将背景颜色更改为红色。

我做错了什么?

谢谢

0 投票
2 回答
365 浏览

moovweb - 在 Tritium 中,如何强制链接到桌面站点?

我正在使用 Moovweb SDK 移动网站,但有些部分我不想针对移动设备进行更改。如何强制这些链接指向原始桌面站点?

0 投票
1 回答
189 浏览

yield - 在 Tritium 中,yield() 函数有什么作用?

我正在查看 Tritium API 网站上的示例,但我不明白 yield() 函数的作用。

http://tritium.io/simple-mobile/1.0.224#yield()%20Text

有人可以解释这些例子吗?