我有一系列的书签可以快速自动填充新闻站点。我从Reddit和Hacker News的(link)示例中学到的格式是:
javascript:location.href='http://www.reddit.com/submit?url='
+encodeURIComponent(location.href)
+'&title='+encodeURIComponent(document.title)
我在其中基于表单字段name
对每个参数进行编码。按照这种模式,我打算填写以下字段:
sub_name
email
author_name
title
link
body
我将从任何技术新闻网站(如this one)触发该书签,以将其提交给https://www.linuxtoday.com/contribute.html。我尝试几个字段的测试用例不起作用:
javascript:location.href='https://www.linuxtoday.com/contribute.html?link='
+encodeURIComponent(document.href)
+'&title='+encodeURIComponent(document.title)
这和我使用JavaScript一样先进。获取这些参数并提交它们的直接方法是什么?