我的情况是面对我的应用程序双滚动条。在容器级别(标题级别)添加了滚动条,当我点击我的第三方链接时,它将在iframe的同一窗口中启动其他应用程序。
现在问题是我正在获取iframe的滚动条以及标题div滚动条。如果我隐藏标题滚动条,它将影响我在第三方之前的实际应用程序。
我不能从DIV打开我的第三方应用程序。所以我正在尝试iframe。可以帮助一些人。
如何隐藏iframe滚动条或使用相同的div来回第三方应用程序....我试过scrollbar =“No”,溢出:隐藏用于隐藏iframe滚动条。他们都没有工作。
答案 0 :(得分:1)
使用此css代码隐藏滚动条:
@Service
@Transactional(readOnly=true)
public class SampleService {
@Autowired
private SampleRepository sampleRepository;
@Transactional
public MyEntity saveMyEntity(MyEntity entity) {
//do some business logic
return sampleRepository.save(entity);
}
}
public class SampleController {
@Autowired
private SampleService sampleService;
public String saveSample(@Valid MyEntity entity) {
//Validation
//If Valid
sampleService.saveMyEntity(entity);
//After saving do some view related rendering logic
//Assume here view related rendering logic throws Exception
return "view"
}
}
选中此fiddle