php – 使用#[closed]在元素名称中创建Yii中的URL

前端之家收集整理的这篇文章主要介绍了php – 使用#[closed]在元素名称中创建Yii中的URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在Yii中创建URL,并在页面上指定一个div,以便在单击时聚焦…我知道我需要在URL中使用#来设置div名称,但是如何在Yii的createUrl函数中指定…

根据我的知识,createUrl()函数只提供参数的选项,而不是元素的选项.

如果你检查 createUrl

additional GET parameters (name=>value). Both the name and value will be URL-encoded. If the name is ‘#’,the corresponding value will be treated as an anchor and will be appended at the end of the URL.

您可以像这样添加它:

echo $this->createUrl('controller/action',array('#'=>'name'));
原文链接:https://www.f2er.com/php/134406.html

猜你在找的PHP相关文章