Bootstrap

如何在html中调用js中的变量获取其值

<--html-->
<input id="s1" type="hidden" name="house.terminalNo" value="" />



<---js-->
var item = getQueryString("item");
document.getElementById('s1').value = item;
;