这可能很简单,但我是新手。
我想要做的就是将一些当前链接放在下拉菜单中。
以下是我想在下拉列表中显示的工作链接:
<p>
<?=anchor('tasks/AddTask', 'Add a Task')?>
<?=anchor('tasks', 'All Tasks')?>
<?=anchor('tasks/mjh', 'Mike')?>
<?=anchor('tasks/ejm', 'Ed')?>
<?=anchor('tasks/fjb', 'Jan')?>
<?=anchor('tasks/ctk', 'Colin')?>
<?=anchor('tasks/cgb', 'Cindy')?>
</p>
以下似乎不起作用:
<form>
<p>
Change View:
<select>
<option value="tasks">All Tasks</option>
<option value="tasks/mjh">Mike</option>
<option value="tasks/ejm">Ed</option>
</select>
<input type="submit" value="Go">
</p>
</form>
或者:
<form>
<p>
Change View:
<select>
<option><?=anchor('tasks', 'All Tasks')?></option>
<option><?=anchor('tasks/mjh', 'Mike')?></option>
<option><?=anchor('tasks/ejm', 'Ed')?></option>
</select>
<input type="submit" value="Go">
</p>
</form>
谢谢。
答案 0 :(得分:1)
锚标记不会起作用,因为它们会创建完整的超链接,而不仅仅是URL。以下应该有效:
<select id="my_links" name="my_links">
<option value="<?php echo site_url('some/path'); ?>"><?php echo site_url('some/path'); ?</option>
</select>
然后你可以使用一些Javacsript将浏览器重定向到指定的URL。
答案 1 :(得分:0)
答案 2 :(得分:0)
你可以使用javascript。
<select onchange="document.location=this.options[this.selectedIndex].value;">
<option value="<?php echo site_url('the/path'); ?>">All Tasks</option>
<option value="<?php echo site_url('the/path'); ?>">Mike</option>
<option value="<?php echo site_url('the/path'); ?>">Ed</option>
</select>