博主编码帮助-出现错误

发布于 2024-11-02 05:27:05 字数 615 浏览 1 评论 0原文

你好呀 我正在尝试制作一个博主小工具...这是我第一次尝试制作小工具。在制作时我遇到了帖子 ID 的问题。 谁能告诉我如何自动为每个帖子写入帖子 ID。请看下面我给出的代码,本节==> “HERE_SHOULD_BE_THE_POST_ID”应包含每个帖子 ID。 [这些代码将放置在博客模板中的 "" 之后]

<input type="hidden" name="blogID" value="xxxxI_KNOW_IT'S_BLOG_IDxxxxxx" id="blogID"> <input type="hidden" name="postID" value="HERE_SHOULD_BE_THE_POST_ID" id="postID">

我是否应该使用这样的 JavaScript:

<script type='text/javascript'>"<data:post.id/>"</script>

如果是这样那怎么办? 或者任何其他方式?

hello there
i am trying to make a blogger gadget... it's my first try to make a gadget. while making i am facing a problem for post id.
so can any one tell me how to write the post id automatically for each posts. look below i have given that code , and this section ==> "HERE_SHOULD_BE_THE_POST_ID" should have each post id. [These code will be placed after "<data:post.body/>" in blogger template]

<input type="hidden" name="blogID" value="xxxxI_KNOW_IT'S_BLOG_IDxxxxxx" id="blogID"> <input type="hidden" name="postID" value="HERE_SHOULD_BE_THE_POST_ID" id="postID">

should i use a javascript like this:

<script type='text/javascript'>"<data:post.id/>"</script>

if so then how?
or any other way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海夜未眠 2024-11-09 05:27:05

我对小工具编写不太熟悉,但这里有一些可能有帮助的想法。

首先,我假设您能够在 JavaScript 中调用某些函数来获取帖子 ID。如果是这样,那么您可以尝试从 JavaScript 动态编写 HTML,以便可以写入帖子 ID。其机制基本上是在页面加载时执行回调并写入页面的 HTML。

另一种选择是稍后使用 DOM 操作来编辑输入元素。您应该能够使用 postID 调用 getElementByID,然后您可以使用帖子 ID 值添加或修改 value 属性。与第一个选项相比,这需要做更多的工作,但在某些方面更干净,因为您只需在一个位置动态修改 HTML,而不是即时生成所有内容。

I'm not that familiar with gadget writing, but here's some ideas that might help.

First, I'm assuming you're able to call something to get the post id in JavaScript. If so, then you might try either writing the HTML dynamically from JavaScript so that you can write in the post id. The mechanics of this are basically to do a callback when the page loads and write to the page's HTML.

Another option would be to use DOM manipulation to edit the input element later. You should be able to call getElementByID using postID and then you could add or modify the value attribute with the post id value. This will require a little more work than the first option, but is in some ways cleaner because you only have to dynamically modify the HTML in one place, rather than generating it all on the fly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文