我正在研究品牌过滤器。当我从下拉列表中更改品牌名称时,我什么也得不到;似乎没有触发任何事件。
下面是我的代码:
<select onchange="location.href=[server.url type='fullpage' query='sort=price&brand=$brand']">
<?php
$brands = dfr_get_brands_list($category);
foreach ($brands as $brand) : ?>
<option><?php echo $brand; ?></option>
<?php endforeach; ?>
</select>
[server.url type='fullpage' query='']
返回当前页面的完整 URL,例如:http://www.mysite.com/store/category/shoes/
.