我想知道是否有一个函数或类似php的<?php echo $_GET['height'];?>
但是在HTML或javascript中。
我需要它来获取URL的变量
答案 0 :(得分:0)
使用location.search
。它返回整个查询字符串,如果需要,可以将其拆分。
答案 1 :(得分:0)
Html是一种标记语言,所以你不能做这样的事情。 尝试使用javascript。 这是一个例子:
//returns the height of the client
function height(){
var clientHeight = document.body.clientHeight;
alert(clientHeight);
}