function change_text(){
//change the cat word to dog word.
}
<button id="button_1_id" >Cat</button>
<br><br><br><br>
<button id="chnage_text_button" >Change the Text of Above Button</button>
我想用一个按钮来改变另一个按钮的按钮文本。我可以问一下如何做到这一点吗?
@Theodore John请检查下面的代码。这是一个基本的Jq。如果你想在点击时改变任何东西,那么你需要创建点击功能并添加一些事件。
$('#chnage_text_button').click(function () {
$('#button_1_id').text('Dog');
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button id="button_1_id" >Cat</button>
<br><br><br><br>
<button id="chnage_text_button">Change the Text of Above Button</button>