0
A
回答
0
這是我將如何處理這一簡單的邏輯:
var sel = document.querySelector("#ddlViewBy");
var input = document.querySelector("input#location");
var button = document.querySelector("button");
var param1 = '';
var param2 = '';
button.addEventListener("click", function(evt){
param1 = sel.options[sel.selectedIndex].value;
param2 = input.value;
//Just to check the value
//alert(param1 + ", " + param2);
});
//Then reconstruct your URL bar with the params above
/**
* orig_url = window.location.href;
* window.location.href = orig_url + '?city=' + param1 + '&zip=' + param2
*
**/
<select id="ddlViewBy">
<option value="1">test1</option>
<option value="2" selected="selected">test2</option>
<option value="3">test3</option>
</select>
<input type="text" id="location" placeholder="Location" />
<button type="button">Submit</button>
我希望這有助於。
相關問題
- 1. 在URL中傳遞額外的參數
- 2. Fb的UI份額URL參數
- 3. url參數傳遞機制
- 4. Backstop js - 傳遞url參數
- 5. 傳遞URL參數在JavaScript
- 6. 通過url傳遞參數
- 7. 傳遞參數的URL
- 8. 傳遞參數拋出url
- 9. 傳遞URL參數Servlet的
- 10. Django的url參數傳遞
- 11. 通過url傳遞參數
- 12. 通過url傳遞參數?
- 13. Java URL - 傳遞參數 - Servlets
- 14. 將參數傳遞給url
- 15. 通過URL傳遞參數
- 16. 將額外參數傳遞給Devise new_user_session_path
- 17. 將額外參數傳遞給asmx webservice
- 18. 傳遞額外參數時出錯 - BEGINNER
- 19. django social_auth傳遞額外的參數
- 20. 使用redirect_to並傳遞額外參數
- 21. 將額外參數傳遞給EventHandler
- 22. 額外的參數傳遞到AngularJS
- 23. JS傳遞額外的參數功能
- 24. 傳遞額外的參數來處理
- 25. 傳遞額外的參數給XMLHttpRequest.onload
- 26. 通過check_box傳遞額外參數?
- 27. 傳遞額外參數的TestCase設置
- 28. 傳遞額外的參數foldRight
- 29. 通過ArgumentParser傳遞額外的參數
- 30. 傳遞一個額外的參數,使
什麼是執行上面的函數的代碼? – Sheedo
它是一個名爲ezfc form calculator的第三方插件。它使用這些參數將字段值轉發到下一頁,我希望第二個用戶使用相同的參數瀏覽同一頁面。 –
某些格式問題+次要語義 – meowgoesthedog