为什么我不断收到串联的字符串?在下面的示例中,我想获取模式中的data-name
,并成功地做到了这一点。问题是当我尝试获取其中包含空格的字符串时,例如"white space"
,那么我得到的唯一字符串是"white"
。
<button data-toggle="modal" data-name="white space">Example</button>
$('#modal').on('show.bs.modal', function(e) {
// get data-id attribute of the clicked element
var name = $(e.relatedTarget).attr('data-name');
// populate the text-box
$(e.currentTarget).find('input[name="textbox"]').val(name)
});