因此,有一个网站我必须经常与之互动。接口有点痛苦,因此我试图通过将URL更改为我要输入的内容来解决该问题。我想我差不多了……尽管我不是Java方面的佼佼者,而且已经有一段时间了。
示例: www.examplewebsite.com/status/ [现货我想输入的内容] / blahblahblah /
到目前为止,我可以填补空白,但是我不确定如何保留后面的内容,如果网站消失了,它会使网站吓坏了。
这是到目前为止我得到的:
javascript:void(location.href='URL goes here'+window.prompt("enter search",""));
我尝试过
javascript:void(location.href='URL goes here'+window.prompt("enter search","")+href='URL continues here');
但这没用。
答案 0 :(得分:1)
尝试
javascript:void(location.href='URL goes here'+window.prompt("enter search","")+'URL continues here');
答案 1 :(得分:1)
右键单击Chrome地址栏,然后选择“编辑搜索引擎...” 。
在“其他搜索引擎” 区域中,单击“添加” 。
给您的“搜索引擎”一个名称和一个易于输入的关键字,例如pain
。
您的新搜索引擎的网址为www.examplewebsite.com/status/%s/blahblahblah/
。
“添加” 它。
现在,您可以直接在地址栏中输入pain mysearchterm
,然后转到www.examplewebsite.com/status/mysearchterm/blahblahblah/
。