类似于<! - ?php echo $ _GET ['height'];? - >在HTML中?

时间:2013-06-23 17:38:34

标签: javascript jquery html

我想知道是否有一个函数或类似php的<?php echo $_GET['height'];?>但是在HTML或javascript中。 我需要它来获取URL的变量

2 个答案:

答案 0 :(得分:0)

使用location.search。它返回整个查询字符串,如果需要,可以将其拆分。

答案 1 :(得分:0)

Html是一种标记语言,所以你不能做这样的事情。 尝试使用javascript。 这是一个例子:

//returns the height of the client
function height(){
   var clientHeight = document.body.clientHeight;
   alert(clientHeight);

}