我正在尝试使用 Clipped API ( http://www.clipped.me/api.html ) 在用户提交文章 url 时返回文章摘要。当用户提交适当的 URL 时,他们会被重定向到带有 JSON 结果的新页面。我想让用户留在页面上并在 JavaScript 中解析 JSON 字符串。我假设重定向与表单操作是指向脚本本身的链接这一事实有关,但我不确定在这里做什么。下面是代码。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Summarize you will!</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
</head>
<body>
<form action="http://clipped.me/algorithm/clippedapi.php?url=[URL]" method="get">
<input type="text" name="url"/>
<input type="submit" value="Submit"/>
</form>
</body>
<script type="text/javascript">
</script>
</html>