提问人:Leon Kardaš 提问时间:3/15/2017 最后编辑:BlazemongerLeon Kardaš 更新时间:3/15/2017 访问量:27
同一按钮中的两个 onclick 功能
Two onclick functions in the same button
问:
我是一个新的初学者程序员,我什至不知道如何解决这个问题,所以请帮忙:
<button type="button" onclick="document.getElementById('but1').style.display='block'""document.getElementById('but2').style.display='block'">Klik!</button
答:
1赞
Blazemonger
3/15/2017
#1
将双引号替换为分号:
<button type="button" onclick="document.getElementById('but1').style.display='block';document.getElementById('but2').style.display='block'">Klik!</button
-1赞
Zuriel Rodriguez
3/15/2017
#2
使用 jQuery
$('#btn').click(function () {
$('#but1').css("display", "block");
$('#but2').css("display", "block");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="btn" type="button">Klik!</button>
<button id="but1" type="button">But1!</button>
<button id="but2" type="button">But2!</button>
评论