尝试使用HTML和CSS来点击按钮

这个问题在这里已经有了答案:

  • 如何创建一个像链接一样的HTML按钮? 27个答案

  • .button { 
    font-size: 44px; 
    color: rgb(255, 255, 255); 
    background: rgb(0, 0, 0) none repeat scroll 0% 0%; 
    width: 64px; 
    height: 58px; 
    border-radius: 13px; 
    border-style: none;
    } 
    
    <button class="button" onclick='location.href=""'>
        <i class="fa fa-twitter"></i>
    </button>
    

    你在css中使用#id ,但是你的html代码使用#id ..这个创建一个problm.please删除id并尝试上课..

    试试这个代码..谢谢


    您只需添加一个onclick操作:

    <button class="button" onclick='location.href="http://twitter.com"'>
        <i class="fa fa-twitter"></i>
    </button>
    

    <button class="button" onclick="document.location.href='DemoPage.html'"> <i class="fa fa-twitter"></i></button>
    链接地址: http://www.djcxy.com/p/36555.html

    上一篇: Trying to make a button clickable with HTML and CSS

    下一篇: How do I link two HTML pages with a button?