gpt4 book ai didi

javascript - Onclick JS函数识别元素Onclick

转载 作者:行者123 更新时间:2023-12-02 19:23:27 24 4
gpt4 key购买 nike

我有一个输入按钮,附加了一个 onclick 属性函数。我想在调用的 javascript 函数中更改按下的按钮的类。问题是页面上有多个按钮,所以我不确定需要在 javascript 函数中编写什么来选择按下的按钮。下面是代码。

<script type="text/javascript" >

function load(thefile, div) {
$.get(thefile, function(data){
$('#' + div).html(data);
});
};

</script>

<input type="button" class="highlighted" value="upvote"
onclick="load('ajax_file','div')" />

最佳答案

this 作为参数传递,您将按下按钮:

<input type="button" class="highlighted" value="upvote" 
onclick="load('ajax_file','div', this)" />      

 

function load(thefile, div, theButton) {    
// change class of theButton
var button = $(theButton);
button.attr("class", "yourClass");

    $.get(thefile, function(data){
    $('#' + div).html(data);  
});
}

一个简单的jsfiddle测试here .

关于javascript - Onclick JS函数识别元素Onclick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12276329/

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