使用 firebug 给出 javascript 命令

发布于 2024-11-08 17:22:11 字数 393 浏览 0 评论 0原文

我有一个包含项目列表和分页链接的页面:

<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=2','ZSearchForm')" style="">NEXT</a>

我需要跳转到第 50 页(偏移量 = 50),但是通过单击链接我只能逐页前进。

有什么方法可以使用 firebug 的控制台来“模拟”点击

<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=50','ZSearchForm')" style="">NEXT</a>

I have a page with a list of items and a pagination link:

<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=2','ZSearchForm')" style="">NEXT</a>

I need to jump to page 50 (offset=50), however by clicking on the link I can only advance page by page.

Is there any way I can use firebug's console to 'simulate' a click on

<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=50','ZSearchForm')" style="">NEXT</a>

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

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

发布评论

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

评论(2

郁金香雨 2024-11-15 17:22:11

您只需在控制台中执行 updFormSubmit('OffSet=50','ZSearchForm') 即可。 (如果您启用了多行模式,请单击运行按钮

You can just execute the updFormSubmit('OffSet=50','ZSearchForm') in the console. (and click the run button if you have multiline mode on)

捂风挽笑 2024-11-15 17:22:11

我认为你应该尝试 Firefox 的 selenium 插件。它允许您自动记录、编辑和调试测试。 Selenium 可以模拟所有类型的用户交互。

I think you should try the selenium Add-on for Firefox. It allows you to record, edit, and debug tests automatically. Selenium can simulate all kind of user interaction.

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