我想找人帮我写一个篡改猴子的剧本。
我有一个脚本,将添加一个按钮到页面上,点击,它会添加一些文本到文本区域。这部分工作正常。见下文。
现在,我需要单击此按钮,在添加文本之前,我需要它选中复选框ID ="1234"
请协助。
(function() {
window.addEventListener("load", () => {
addButton("Add Markdown");
});
function addButton(text, onclick, cssObj) {
cssObj = cssObj || {
position: "fixed",
top: "15%",
right: "4%",
"z-index": 3,
fontWeight: "600",
fontSize: "14px",
backgroundColor: "#00cccc",
color: "white",
border: "none",
padding: "10px 20px"
};
let button = document.createElement("button"),
btnStyle = button.style;
document.body.appendChild(button);
button.innerHTML = text;
// Setting function for button when it is clicked.
button.onclick = selectReadFn;
Object.keys(cssObj).forEach(key => (btnStyle[key] = cssObj[key]));
return button;
}
function selectReadFn() {
var txt = document.getElementById("markdown-editor").value += '\n---\n```markdown text here.\n```\n\n'
}
})();
我找不到通过单击另一个按钮来选中复选框的脚本
1条答案
按热度按时间blmhpbnm1#
假设您希望您的
selectReadFn
是在单击按钮时调用的selectReadFn
,您可以将其更改为如下形式:这里假设有一个ID为
1234
的复选框,就像您所说的那样,并在修改txt
变量之前选中它。