因为asp是在服务器端运行,而js是在浏览器端运行的,所以当服务器在解析asp脚本的时候无法调用js变量。
要想在asp中使用js的变量,只能通过传参的方式传递给服务器,例如
<script type="text/javascript">function getUrlParms(code){
var reg = new RegExp("(^|&)"+ code +"=([^&])(&|$)");
var r = windowlocationsearchsubstr(1)match(reg);
if(r!=null)
return unescape(r[2]);
return null;
}
<%
if RequestQueryString("id") = "" then
%>
var id = getUrlParms("code");
locationhref = locationhref + "id=" + id;
<%
else
responseRedirect "/download=" & RequestQueryString("id")
end if
%>
</script>
以上就是关于asp 中调用 JS的变量全部的内容,包括:asp 中调用 JS的变量、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)