我对使用占位符的字段进行谷歌自动填充时遇到了一些问题。所以我已经尝试了几乎所有解决方案: Disabling Chrome Autofill 但遗憾的是,它都没有按照我的要求工作。
所以我的想法是拥有一个具有不同领域的表单,其中一些是其他领域不需要的(这使得Ryan Grush解决方案无法解决)。
我尝试过autocomplete =“false”,autocomplete =“off”,我尝试在表单的开头使用“ghost”输入,尝试了不同的方法将空白值强制插入字段。< / p>
一旦用户开始输入,我就可以使用javacript来隐藏标签(基于Ryan Grush解决方案),但遗憾的是,设计要求只能作为最后的手段来完成。所以我在这里希望有人与Chrome和占位符类似。
答案 0 :(得分:0)
不幸的是 这样:
{
template<class Type>
class BinarySearchTree
{
//Forward declare classes
public:
class BinarySearchTreeNode;
//Declare
public:
BinarySearchTree();
private:
BinarySearchTreeNode *head;
//Nested classes:
public:
class BinarySearchTreeNode
{
friend std::ostream& operator <<(std::ostream &outs, const BinarySearchTreeNode& node);
public:
BinarySearchTreeNode();
BinarySearchTreeNode(const Type &data);
BinarySearchTreeNode *getRight() const;
BinarySearchTreeNode *getLeft() const;
void insert(const Type &data);
const Type &getData() const;
std::string recursiveToString();
private:
Type data;
List<int> lineNumbers;
BinarySearchTreeNode *left;
BinarySearchTreeNode *right;
void addNode(Type data);
void setRight(Type data);
void setLeft(Type data);
};
};
}
template<class Type>
std::ostream& cs20a::operator <<(std::ostream &outs, const typename BinarySearchTree<Type>::BinarySearchTreeNode& node)
{
outs << node.getData();
return outs;
}
而且这个:
<input autocomplete='off'>
被Chrome忽略了,我还没有找到解决方法...... 其他浏览器,如Firefox,Safari等。支持它