Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有一个函数或类似 php 的东西,<?php echo $_GET['height'];?>但在 HTML 或 javascript 中。我需要它来获取 URL 的变量
<?php echo $_GET['height'];?>
使用location.search. 它返回整个查询字符串,如果需要,您可以将其拆分。
location.search
Html 是一种标记语言,所以你不能做这样的事情。尝试使用 JavaScript。这是一个例子:
//returns the height of the client function height(){ var clientHeight = document.body.clientHeight; alert(clientHeight);
}