wordpress点击按钮怎么实现跳转到另一页面
functiongogo($atts,$content=null){extract(shortcode_atts(array('url'=>'0'),$atts));re...
function gogo($atts,$content=null)
{
extract(shortcode_atts(array('url'=>'0'), $atts));
return '<div class="clearfix"><span class="price"> '.$content.'</span><a class="menuhover gogo" href="'.$url.'">查看详情</a></div>';
}
为什么这段代码不能实现跳转到另一页面?求解 展开
{
extract(shortcode_atts(array('url'=>'0'), $atts));
return '<div class="clearfix"><span class="price"> '.$content.'</span><a class="menuhover gogo" href="'.$url.'">查看详情</a></div>';
}
为什么这段代码不能实现跳转到另一页面?求解 展开
展开全部
可以用html中的a标签(xxx.html就是要跳转的链接):
1
<a href="xxx.html">跳转链接</a>
可以用js进行跳转:
1
<button onclick="window.location.href='xxx.html'">点击跳转</button>
以上两种方式达到的效果是一样的.
1
<a href="xxx.html">跳转链接</a>
可以用js进行跳转:
1
<button onclick="window.location.href='xxx.html'">点击跳转</button>
以上两种方式达到的效果是一样的.
追问
add_shortcode('gogo',gogo);
function below_the_title() {
echo '[gogo url="xxx.html"][/gogo]';
为什么我用了这段代码还是不能实现跳转到另一页面?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询