单击框转到下一页,而不是仅单击文本
click on box to go to the next page instead of clicking on only text
我这里有一个代码,您可以在其中单击(帐户)文本。这将打开下一页。
我想要:当你点击 (.box.boxAccounts) 时,你会进入下一页,而不仅仅是文本(帐户) =Link_to returns账户名。
.features-boxed
.container.boxContainer
#myUL.row.features.appFunction.indexBox
- @accounts.sort_by(&:name).each do |account|
.col-sm-6.col-md-5.col-lg-3.item.icons
.box.boxAccounts
.boxInsiteAccount
%i.fa.fa-building.iconSpaceBottom.accountIcon
%h3.name
= link_to account.name, account_path(account), :class => "optieTekst"
%br/
我们不是把 link 围在盒子周围吗?
.features-boxed
.container.boxContainer
#myUL.row.features.appFunction.indexBox
- @accounts.sort_by(&:name).each do |account|
.col-sm-6.col-md-5.col-lg-3.item.icons
= link_to account_path(account) do
.box.boxAccounts
.boxInsiteAccount
%i.fa.fa-building.iconSpaceBottom.accountIcon
%h3.name
= account.name
%br/
link_to 占一格。
你可以试试:
- @accounts.sort_by(&:name).each do |account|
.col-sm-6.col-md-5.col-lg-3.item.icons
= link_to account_path(account) do
.box.boxAccounts
.boxInsiteAccount
%i.fa.fa-building.iconSpaceBottom.accountIcon
%h3.name
= account.name
%br/
我这里有一个代码,您可以在其中单击(帐户)文本。这将打开下一页。
我想要:当你点击 (.box.boxAccounts) 时,你会进入下一页,而不仅仅是文本(帐户) =Link_to returns账户名。
.features-boxed
.container.boxContainer
#myUL.row.features.appFunction.indexBox
- @accounts.sort_by(&:name).each do |account|
.col-sm-6.col-md-5.col-lg-3.item.icons
.box.boxAccounts
.boxInsiteAccount
%i.fa.fa-building.iconSpaceBottom.accountIcon
%h3.name
= link_to account.name, account_path(account), :class => "optieTekst"
%br/
我们不是把 link 围在盒子周围吗?
.features-boxed
.container.boxContainer
#myUL.row.features.appFunction.indexBox
- @accounts.sort_by(&:name).each do |account|
.col-sm-6.col-md-5.col-lg-3.item.icons
= link_to account_path(account) do
.box.boxAccounts
.boxInsiteAccount
%i.fa.fa-building.iconSpaceBottom.accountIcon
%h3.name
= account.name
%br/
link_to 占一格。
你可以试试:
- @accounts.sort_by(&:name).each do |account|
.col-sm-6.col-md-5.col-lg-3.item.icons
= link_to account_path(account) do
.box.boxAccounts
.boxInsiteAccount
%i.fa.fa-building.iconSpaceBottom.accountIcon
%h3.name
= account.name
%br/