1 回答

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超6個(gè)贊
回應(yīng):
如何使用 id 而不是索引來定位按鈕?
更改setColor函數(shù)如下圖所示:
前:
function setColor(keyValue) {
var keyName = $(targetBtn).index();
console.log(keyName, keyValue);
$(targetBtn).css("background", saveColorPref(keyName, keyValue));
}
后:
function setColor(keyValue) {
var keyName = $(targetBtn).attr('id');
console.log(keyName, keyValue);
$(targetBtn).css("background", saveColorPref(keyName, keyValue));
}
SO 片段拋出此錯(cuò)誤:
Uncaught DOMException: Failed to read the 'localStorage' property from 'Window': The document is sandboxed and lacks the 'allow-same-origin' flag.
所以你看不到按鈕顏色的變化。但這在你的 jsfiddle 中有效。
- 1 回答
- 0 關(guān)注
- 152 瀏覽
添加回答
舉報(bào)