我知道这是一个简单的问题,所以如果你发现它是重复的,请注意我删除。
这是我的弹簧控制器:
@Controller
public class MyController {
.
.
.
@RequestMapping("/testActiveX")
protected ModelAndView testActiveX(){
ModelAndView model = new ModelAndView("test_ActiveX");
model.addObject("APDU","00A4040008A000000018434D00");
return model;
}
.
.
.
}
这是我的jsp页面:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<script type="text/javascript">
function func(apdu) {
alert(apdu);
}
</script>
</head>
<body>
<button type="button" style= "height: 30px; width: 153px" onclick="func(${APDU});">click</button>
</body>
</html>
为什么我的javascript函数无法访问APDU
值?
答案 0 :(得分:1)
根据您的评论,添加逗号可以解决您的问题
onclick="func('${APDU}');"