我有一个导航标签。问题是当选项卡处于活动状态时,选项卡上会出现箭头。 这是选项卡的示例图片。
@FXML
void playSong(ActionEvent event) {
File file = new File("/home/havoc/Music/bb.mp3");
String path = file.getAbsolutePath();
Media media = new Media("file://"+path);
System.out.println(media.getSource());
MediaPlayer player = new MediaPlayer(media);
player.play();
}
我尝试使用display:none删除选项卡,还有很多,但是失败了。 我尝试寻找解决方案,但找不到任何东西。感谢任何帮助。是的