PHP教程

用php实现a标签与其他标签结合使用实现跳转

本文主要是介绍用php实现a标签与其他标签结合使用实现跳转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、点击图片实现跳转

$img = Html::a(Html::img(ImageHelper::src($model->cover)), Url::to(['/default/view', 'id' => $model->id]));
   
$aImg = Html::a(Html::img(\grazio\image\helpers\ImageHelper::src($model->image), ['class' => 'mr-3 news-img', 'width' => 100]), Url::to(['/news/default/view', 'id' => $model->id]));
 <?= Html::a(Html::img($this->theme->getAssetUrl('images/logo.png')), Url::to(['/']),['class' => 'bar']) ?>

<?= Html::a(Html::img(\grazio\image\helpers\ImageHelper::src($model->cover), ['width' => 300]), Url::to(['view', 'id' => $model->id]));?>

<?= Html::a(Html::img($this->theme->getAssetUrl('images/leader-banner.jpg')), Url::to(['/volunteer'])) ?>

二、点击标题或者文字实现跳转

 $h5 = Html::a(Html::tag('h5', $model->book_name, ['class' => 'title']), Url::to(['/curriculum/default/view', 'id' => $model->id]));

三、点击按钮返回上一个页面

<?= Html::a(Html::button('返回', ['class' => 'btn btn-primary']), Yii::$app->request->referrer) ?></a>

四、结合条件使用

<?= !empty($model->usersAttachment) ? Html::a(Html::img(Yii::getAlias('@uploadUrl' . $model->usersAttachment[0]->attachment), ['width' => 100]), Url::to(['/users/id/' . $model->id])) : '' ?>

 <?= Html::a(isset($model->project->district) ? str_replace(',', '', $model->project->district->mername) : '', Url::to(['/users/id/' . $model->id])) ?>

这篇关于用php实现a标签与其他标签结合使用实现跳转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!