我试图在cpanel中找到放置我的网站首页的文件或文件夹,以便可以向我的网站添加浮动操作按钮脚本。
我这里没有任何经验。
(我正在尝试将其添加到正确的位置)
应该有一个完成的结果,如此处http://www.floatingactionbutton.com
答案 0 :(得分:0)
应用程序的视图或“页面”应位于int del_node(int val_del) {
node* temp_del = head;
if(head == nullptr) {
cout<<"no element to delete.!";
exit(0);
} else if(head->data == val_del) {
// If head is to be deleted
head = head->next;
} else {
while(temp_del->next != nullptr) {
if(temp_del->next->data == val_del) {
temp_del->next=temp_del->next->next;
// delete temp_del->next->next; This is wrong deletion
}
temp_del = temp_del->next;
}
}
// delete the node if one found else not
if (temp_del != nullptr)
delete temp_del;
return 0; // This should return true or false, do check what you want as return type
}
目录中。您可能会发现“家庭”视图或类似视图,但是无法知道在开发应用程序时这些视图的名称。
视图可能不是直接的HTML / PHP,而是使用Laravel的Blade语法。
此外,您网站中现有的javascript文件可能已使用Webpack进行了编译。我想浮动操作按钮将是一个JavaScript脚本。
您可以让原始开发人员为您添加脚本吗?