在管理页面中创建链接文本,如提交按钮

时间:2012-08-29 作者:Teno

我正在为我的插件制作一个管理页面,我想制作一个文本链接,就像管理页面的表单按钮一样。

我试过了,但效果不好。

<a href="" cless="button-primary" style="line-height: 2em; border-color: #298CBA; font-weight: bold; color: white; background: #21759B url(../images/button-grad.png) repeat-x scroll left top; text-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0;">Submit</a>
我还尝试只放置一个提交按钮,希望页面转到action属性中的url。

<form action="$url" target="_self">
    <input type="submit" class="button-primary" value="Submit" />
</form>
有人知道怎么做吗?

2 个回复
SO网友:Tom J Nowell

您可以使用button css类:

<a href="#" class="button">I am a button</a>
可以通过添加button-primary:

<a href="#" class="button button-primary">I am the primary button</a>

SO网友:Teno

这起作用了,

<?php 
$pageslug = \'the-plugin-option-page-slug\';
?>
    <form method="post" action="?page=<?php echo $pageslug; ?>&tab=2">
        <input type="submit" class="button-primary" value="Submit" />       
    </form>
<?php
我有选项卡式选项页面,按钮就像是指向选项卡2页面的链接,没有提交任何内容。

结束

相关推荐

URL Design for Sub-Posts?

我目前有:mysite.com/product-name mysite.com/another-product 等,其中产品名称和其他产品是帖子。然后,我有一个名为Changelogs的自定义帖子类型,我为每个产品都有这个类型,是否可以有类似以下内容的url:mysite.com/product-name/changelog mysite.com/another-product/changelog 如果是的话,我该怎么做呢?