我的 div 如下所示:
<div id="customfield_11504-val" class="value type-multiselect editable-field inactive" data-fieldtype="multiselect" data- fieldtypecompletekey="com.atlassian.jira.plugin.system.customfieldtypes:multiselect" title="Click to edit">
<div class="shorten" id="customfield_11504-field" style="height: auto;">
<span>option 3</span>
,
<span>option 2</span>
,
<span>option 1</span>
</div>
<span class="overlay-icon icon icon-edit-sml"/>
</div>
我在下面写了 jQuery 的东西:
var ret = AJS.$.trim(AJS.$('#customfield_11504-val .shorten span').map(function () {
return AJS.$(this).html();
}).get().join(", "));
console.log("ret is:" + ret);
它打印我如下:
[对象 HTMLSpanElement]、[对象 HTMLSpanElement]、[对象 HTMLSpanElement]
这里有什么问题..我试过了,发短信但还是只给我这个。