gpt4 book ai didi

javascript - 使用 javascript 预填充 onclick 内容

转载 作者:行者123 更新时间:2023-12-03 01:45:24 25 4
gpt4 key购买 nike

我有一个带有 onclick 的按钮,例如:

<button id="startEdit" onclick="editMe('xxxx')">Edit This Record</button>

使用 JavaScript 如何预填充“xxxx”内容并将其替换为其他内容?

我尝试过类似的方法:

<script>
document.getElementById("startEdit").innerHTML = 'newstuff';
</script>

...但这只是替换了“编辑此记录”部分。我希望它替换“xxxx”区域..

谢谢戴夫

最佳答案

我不太明白你想做什么,但我猜你想将参数传递给事件处理程序

<script>

document.getElementById("startEdit").onclick = (function(arg){

return function editMe(){
// body of function that will be executed when you click on button here
//use 'xxxx' here as arg
console.log(arg);
}

})('xxxx');

</script>

关于javascript - 使用 javascript 预填充 onclick 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50661500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com