我正在尝试让ckeip jquery 插件将我的 textarea 的 id 解析为我的 php 文件。
该插件由我的 textarea 的类名激活:
$('.ckeip_edit').ckeip({
然后使用对象文字将数据传递给我的 php 文件:
data: {
name1 : 'value1',
name2 : 'value2'
},
我需要在其中一种尝试中使用我的 textarea 的 id 属性:
data: {
name : 'value',
id : function(){this.getAttribute("id")}
},
但这似乎不起作用。
我可以在对象文字中使用变量吗?