gpt4 book ai didi

ruby-on-rails - rails/Ajax : Unable to remove "bullet mark" when using Ajax in Rails to add Todos remotely

转载 作者:行者123 更新时间:2023-11-28 19:08:50 25 4
gpt4 key购买 nike

我设法让 Ajax 在 Rails 中工作,特别是使用 remote_form_for 标记从 Index 添加 Todos。但是,当我添加它们时,它们旁边会有一个元素符号。

这是我的帖子/索引

<% form_remote_tag(   :url =>
todos_path, :method => :create,
:update => "todo_list", :position =>
:top, :html => {:id => 'todo_form'})
do %>

<label for="todo_title">Todo</label>
<%= text_field( "todo", "title") %>

<button type="submit">Add
Todo</button> <% end %> </div> <div
id="todo_list"></div> <br />

还有我的部分_todo

<li id="todo_"><%= link_to todo.title, :action => 'show'%></li>

当我点击添加时,它添加了一个新的待办事项,旁边有一个圆点标记。

有什么帮助吗?

最佳答案

我既不了解 ruby​​ 也不了解 rails,但要去除 li 中不需要的要点,您可以使用以下 CSS:

ul
{
list-style-type: none;
margin: 0px;
padding: 0px;
}

关于ruby-on-rails - rails/Ajax : Unable to remove "bullet mark" when using Ajax in Rails to add Todos remotely,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1944847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com