作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想更改一些 dom 内容,使所有输入字段值都是网页的 ""
,然后用户才能看到它。我该怎么做?有什么办法可以做到这一点吗?谢谢。
最佳答案
您需要一个在 document_start 上运行的内容脚本,以及以下两种方法之一:
添加 CSS 样式覆盖以使 INPUT 文本透明,并在加载页面时清除元素并删除样式:
manifest.json:
"content_scripts": [{
"matches": ["<all_urls>"],
"run_at": "document_start",
"all_frames": true,
"js": ["content.js"]
}],
内容.js:
// document is empty now so we'll only add the style
var style = document.documentElement.appendChild(document.createElement('style'));
style.textContent = 'input {color: transparent !important;}';
// once DOM is ready clear the inputs
document.addEventListener('DOMContentLoaded', function() {
var inputs = document.getElementsByTagName('input');
for (var i = inputs.length; --i >= 0; ) {
var input = inputs[i];
if (input.value) {
input.value = '';
}
}
style.remove();
});
关于google-chrome-extension - 如何在加载网页之前运行内容脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39616586/
我是一名优秀的程序员,十分优秀!