如何在JS文件中执行EL表达式的console.log
jQuery(document).ready(function() {
$('.js-bbCheckbox').click(function(event) {
var bbck = '${tagOne}';
console.log (bbck);
console.log (${tagTwo});
});
Run Code Online (Sandbox Code Playgroud)