我正在尝试一个简单的(或者我认为的)无线电输入更改命令。我有下面的脚本,当选择某个单选按钮时它会改变一个框的类,但它会不断出现
未捕获的SyntaxError:意外的输入结束
我正在使用Wordpress,它在scripts.js中工作正常,但我需要在页面中将PHP放入其中。
$("#radio").on('change', 'input[type=radio]', (function() {
if ($("#port-filter-<?php echo ''.get_the_ID().''; ?>").is(":checked")) {
$("#port-item-container").removeClass();
$('#port-item-container').addClass('port-choice-<?php echo ''.get_the_ID().''; ?>');
}