gpt4 book ai didi

javascript - 如何使用 Javascript 自动打印一系列 HTTP 搜索查询的搜索结果?

转载 作者:行者123 更新时间:2023-11-29 21:46:55 28 4
gpt4 key购买 nike

我有一个 tampermonkey 脚本,我试图在其中获取一组名称,并对每个名称执行搜索并打印页面。它会在您加载页面时自动运行,这就是为什么需要 if 语句的原因。

$(document).ready(function(){
var searchBar = $('input[name="searchfield"]');
var submit = $('button[name="searchbyname"]');

if ( searchBar.val() < 1 ) {
var namesArray = prompt('enter names to search, separated by commas').split(', ');
$.each(namesArray, function(i, v) {
$(searchBar).val(v);
$(submit).trigger('click');
window.print();
});

}
})

我的问题是它只在最后一个循环中运行 $(submit).trigger('click');。因此,如果我的数组是“一、二、三”,它将在搜索栏中输入“一”,将其替换为“二”,然后是“三”,然后才会真正触发搜索按钮。

最佳答案

(这个答案是为了回应我认为真正的需要,“我如何使用 Javascript 自动打印一系列 HTTP 搜索查询的搜索结果?”,真诚地发帖者会调整相应的问题。)

您实际上是在尝试使用 Javascript 打印来自不同页面的搜索结果。您的方法不适用于此目的(因此 $.each 循环的原始问题无效);每次提交搜索时,您的 Javascript 运行时和用户脚本都会被破坏。

要完成最终目标,您需要将查询循环与提交 HTTP 请求的窗口分开。诀窍:创建一个包含该网站的 iframe,然后从 top 窗口控制该 iframe。

这是可以直接复制到开发者控制台的代码。我只用控制台测试过它,但它应该适用于像 Tampermonkey 这样的脚本注入(inject)器。

(function(){
// Define the bits that work with this particular website.
var fieldname = 'searchfield';
var formname = 'ECPCIS_list';

// Figure out which names need to be searched.
var query_iter = 0
, queries = prompt('What names do you want to search for?').split(',').filter(function (val) {
return val.trim();
});
if (!queries.length) { return; }

// Store the current URL.
var url = window.location.href;

// Reopen the current document (in the context of the current domain security), and replace the
// document contents with a single iframe. The iframe source is equal to the original URL.
document.open();
document.close();
var iframe = document.createElement('IFRAME');

// Make sure that the styles are set up in such a way that the iframe gets full height.
// We'll add a listener that resizes the `top` window (our script) whenever the iframe loads.
document.body.setAttribute('style', "width:100%;height:100%;margin:0;");
iframe.setAttribute('style', "width:100%;height:100%;");
iframe.setAttribute('scrolling', 'no');

// Create a method to handle the query/repeat lifecycle.
var runQuery = function() {
document.body.style.height = iframe.contentWindow.getComputedStyle(iframe.contentDocument.body).getPropertyValue('height');

// Find the search box. If it doesn't exist yet, continue to wait.
var fields = iframe.contentDocument.getElementsByName(fieldname);
if (fields.length == 0) {
setTimeout(100, runQuery);
return;
}

// If this isn't the first iteration, we need to wait to print the screen.
if (query_iter > 0) {
window.print();

if (query_iter >= queries.length) { return; }
}

// Set the query in the search box.
fields[0].value = queries[query_iter];

// Increment the query iteration.
query_iter += 1;

// Submit the form. This will refresh the iframe.
// When it is done loading, runQuery will be executed again.
iframe.contentDocument.getElementsByName(formname)[0].submit();
}
iframe.addEventListener('load', runQuery);

// Stick the iframe into the DOM and load the original page.
// Now it looks like we're in the same page we were just on; the fact that there are two layers
// is visually hidden. IOW, the "window.print" method will capture the right output.
document.body.appendChild(iframe);
iframe.src = url;
})()

请注意,专门为您的用例设计的部分是顶部的 fieldnameformname。其余部分是完全通用的;您可以使用在 inputform 元素上具有适当 name 属性的任何网站。

关于javascript - 如何使用 Javascript 自动打印一系列 HTTP 搜索查询的搜索结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30812096/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com