超链接不在整个按钮中

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

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

  • 你正在把一个输入标签放在一个不可能的锚标签内。

    我猜你正在使用Twitter引导程序,其中btn类也可以提供<a>标签,并使它们看起来像按钮,所以你可以这样做:

    <div class="checksheet">
        <a href="http://some_link" target="_blank" class="btn btn-large btn-primary">
        Graph Search
        </a>
    </div>
    <div class="nchecksheet">
        <form action="/link" method="POST">
            <input class="btn btn-large btn-primary" type="submit" value="Analyze Topics" onclick="$('#loading').show();">
        </form>
        <div id="loading" class="hide" style="position: relative; left:860px;">
            <img src="{{ url_for('static', filename='img/newload.gif') }}" alt="" />
        </div>
    </div>
    

    尝试...

    <div class="checksheet">
            <input type=button class="btn btn-large btn-primary" onClick="location.href='http://some_link'" value='Graph Search'>
        </div>
         <div class="nchecksheet">
       <input type=button class="btn btn-large btn-primary" onClick="location.href='http://some_link'; onclick="$('#loading').show();" value='Analyze Topics'>
        <div id="loading" style="display:none; position:relative ;left:860px"><img src="{{ url_for('static', filename='img/newload.gif') }}" alt="" /></div>
    </div>
    
    链接地址: http://www.djcxy.com/p/36559.html

    上一篇: hyperlink not in whole button

    下一篇: How to link button?