0
我目前正在嘗試學習HTML,並希望創建一些內容,因爲我正在學習。我正在嘗試創建一個可從多個站點檢索結果的搜索框。到目前爲止,只有在行動中的第一個網站纔有效,但不是第二個網站。我試圖在谷歌搜索很多,但無法找到任何東西,我也試着在這裏檢查,但似乎沒有發現任何東西。我只是試圖讓搜索框從多個不同的網站獲得結果。將表單提交到多個URL
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Test</title>
</head>
<body>
<h1>Search for a Domain or IP</h1>
<form method="get" action="https://www.virustotal.com/en/domain/%s/information/","https://duckduckgo.com/search.html?prefill=Search DuckDuckGo" target="_blank" onsubmit="submitSearch()">
<input type="text" placeholder="Search..." required>
<input type="button" value="Search">
</form>
</body>
</html>
如果你打算在這一點上,至少讓我知道爲什麼。 – crame