我有以下代码将变量从 example1.html 传递给 example2.html ,window.location.href 中的语法是什么,以使用用户名和关键字导航到 example2.html。
示例1.html
<script type="text/javascript">
var username = ($("#username").val());
var keyword = ($("#keyword").val());
$("#button1").click(function(){
window.location.href = "http://localhost:2757/example2.html";
});
</script>