这可能非常简单,但我是一个新手。我使用这样的东西在URL的末尾添加输入
from goose import Goose
from requests import get
response = get('http://www.highbeam.com/doc/1P3-979471971.html')
extractor = Goose()
article = extractor.extract(raw_html=response.content)
text = article.cleaned_text
print text
但现在我想在另一个网址的中间添加一些内容,例如:
javascript:
(function() {
var val= prompt("Enter #","");
if (val)
location="http://www.test.com?param="+escape(val);
})()
我不知道自己在做什么。
答案 0 :(得分:5)
将字符串连接在一起:
javascript:
(function() {
var val= prompt("Enter #","");
if (val)
location="http://www.test.com/"+escape(val)+"/html/stuff";
})()