2 回答

TA貢獻(xiàn)1854條經(jīng)驗(yàn) 獲得超8個(gè)贊
拒絕執(zhí)行內(nèi)聯(lián)腳本,因?yàn)樗`反了以下內(nèi)容安全策略指令:“script-src‘Self’chrom-擴(kuò)展名:”。
hello.html
(彈出頁)、
<!DOCTYPE html><html><head></head><body><p id="demo">=a</p><button type="button" id="do-count">Count</button><script src="popup.js"> </script></body></html>
popup.js
var a=0;function count() { a++; document.getElementById('demo').textContent = a;}document.getElementById('do-count').onclick = count;
innerHTML
textContent
textContent
innerHTML
添加回答
舉報(bào)