为什么我不能在对象中有变量?我收到如下错误:
"Uncaught SyntaxError: Unexpected token this"
我的代码是这样的。
$("#search_options input:checkbox").on('click', function() {
var params = {
$(this).attr('name') : $(this).val(),
};
var str = jQuery.param(params);
});
我确定 $(this) 正在工作,因为我试图在 params 对象之外控制台.log 它然后我正在工作。