如何使用 jQuery 更改页面的视频最大数量?
我这里有一个网站,其中包含要观看的视频,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果只是更改值,这可以解决问题:
我不知道
vid_count
是什么意思,所以您可能还需要这样做:您确定
vid_count
is不是422吗?为了确定起见,请尝试以下操作:If it's just about changing values, this will do the trick:
I don't know what
vid_count
means, so you might also need to do this:Are you sure
vid_count
isn't 422? Just to be sure, try this: