如何使用 jQuery 更改页面的视频最大数量?

发布于 2024-09-02 17:02:30 字数 503 浏览 3 评论 0原文

我这里有一个网站,其中包含要观看的视频,例如 youtube,并且视频分为页面,在该页面的源代码中我得到了这部分源代码:

<input type="hidden" value="12" id="vid_count">
<input type="hidden" value="422" id="vid_max">
<input type="hidden" value="12" id="vids_per_page">

该网站包含 422 个视频,共 36 个页面,每页 12 个视频

我需要在一页中显示所有视频...

我已经尝试过

document.getElementById("vids_per_page").setAttribute("value", "500");

,但这不起作用...

我该怎么做? (来自greatmonkey)

还有其他信息吗?

I have one website here that contains videos to see, like youtube, and the videos are divided in pages, and in the source of this page I got this part of the source:

<input type="hidden" value="12" id="vid_count">
<input type="hidden" value="422" id="vid_max">
<input type="hidden" value="12" id="vids_per_page">

The site contains 422 videos with 36 pages, 12 videos per page

I need to show all videos in only one page...

I've already tried

document.getElementById("vids_per_page").setAttribute("value", "500");

but this doesn't work...

How can I do it? (via greasemonkey)

any additional info?

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

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

发布评论

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

评论(1

最美的太阳 2024-09-09 17:02:30

如果只是更改值,这可以解决问题:

document.getElementById("vids_per_page").value = document.getElementById("vid_max").value;

我不知道 vid_count 是什么意思,所以您可能还需要这样做:

document.getElementById("vids_per_page").value = document.getElementById("vid_max").value;

您确定 vid_count is不是422吗?为了确定起见,请尝试以下操作:

document.getElementById("vids_per_page").value = "422";

If it's just about changing values, this will do the trick:

document.getElementById("vids_per_page").value = document.getElementById("vid_max").value;

I don't know what vid_count means, so you might also need to do this:

document.getElementById("vids_per_page").value = document.getElementById("vid_max").value;

Are you sure vid_count isn't 422? Just to be sure, try this:

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