如何使我的按钮在页面的底部显示href?

时间:2018-06-19 15:26:09

标签: php html forms button

好吧,我在此表单上有一个按钮

echo " <td><form action='action.php' method='post'>
        <input type='hidden' id='itemid' name='itemid' value='". $row["name"] ."'/>
            <input type='hidden' id='seller' name='seller' value='". $row["player"] ."'/>
         <input  type='submit' value='Buy'/>
       </form></td>";

这是按钮

             <input  type='submit' value='Buy'/>

是否可以使按钮在页面的底部显示为直接链接?

Just like this example

1 个答案:

答案 0 :(得分:1)

不可能。您将必须使用<a>标记,将其设置为按钮样式,然后通过Javascript提交表单。