我有一个HTML表格,然后双击这些行。除了一些<input>
字段外,该表是只读的。
当我将鼠标悬停在不是<input>
字段的文本上时,如何才能使光标不会更改为I栏?
我收到了一些答案,但他们只是指向链接。有人能给我一个小提琴的例子吗?
答案 0 :(得分:12)
答案 1 :(得分:3)
设置你希望成为指针,等待等字段的游标属性
答案 2 :(得分:1)
使用此css:
table.className td input{
cursor: none; /* or the one which you would like to have */
}
答案 3 :(得分:0)
.your-block {
cursor: default;
}