页面跳转定位到某个位置页面锚点
a页面
<a href="b.html#abc">xxx</a>
b页面
<div id="abc"></div>
可以使用路由,也可以直接使用路径
// Controller
Route::get('/custom_paint', array('as' => 'custom_paint', 'uses' => 'PagesController@services'));
// View
<a href="{{ URL::route('custom_paint') }}#id">LINK</a>
最近访问时间:2025-04-30 11:55:29