0

我正在使用http://jqueryui.com/selectable/#display-grid和多选选项,就像我在这里做的那样:https ://stackoverflow.com/questions/16269438/how-can-i-select-and-取消选择-多个-网格-图标-in-javascript-and-show-the-sel

谁能解释为什么我可以替换“标题”文本 Info-2 而不是 li 标记内的文本 Info-1!

<li class="ui-state-default" title="Info-2">Info-1</li>

这个工作正常:

$('li').each(function(index, temp){ $(temp).attr('title', ar[index+1][kLan] ); });

但不是这个:

$('li').each(function(index2, temp2){ 
    var tmp = $(temp2).text();
    $(temp2).attr(tmp, ar[index2+1][kLan] ); });

这是我得到的错误:

jquery-1.9.1.js:2358INVALID_CHARACTER_ERR:DOM 异常 5:指定了无效或非法字符,例如在 XML 名称中。

4

1 回答 1

0

我自己发现了这个问题:

$('li').each(function(index, temp){ $(temp).html(ar[index+1][kLan] ); });

现在一切正常!

于 2013-07-10T23:23:04.763 回答