在js文件中怎么取request中的值?
发布网友
发布时间:2022-05-01 15:14
我来回答
共5个回答
热心网友
时间:2022-04-25 21:16
javascript可以通过window.navigator来进行判断。不同的浏览器navigator对象里的名称是不同的:
window.navigator.userAgent 记录浏览器信息以及操作系统信息。
1.取变量值
var a = '<%=request.getAttribute("aaa");%>' ;
2.也可以将这个值放在页面上.再取出来.
<input type="hidden" value="<%=request.getAttribute("aaa");%>" id="aaa"/>
var a = document.getElementById('aaa').value ;
(注):对于对象,我推荐使用第二种方法.这样可以在页面中不IMPORT JAVA类..更符合现在编程
eg:
<input type="hidden" value="${student.name}" id="stuName"/>
var stuName = $('stuName').value ;// prototype.
热心网友
时间:2022-04-25 22:34
el表达式能在静态网页运行?不是吧貌似js是取不到request的值的吧 想在静态网页传值只能在url后加发芽串,然后剖析得值吧?呵呵 目光如豆了 生效
热心网友
时间:2022-04-26 00:08
var userOID = <% user.getOperatorid()%>;
热心网友
时间:2022-04-26 02:00
var b=${user.oid};
热心网友
时间:2022-04-26 04:08
var b="${oid}";加引号呀