<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://www.jacklmoore.com/colorbox/jquery.colorbox.js" type="text/javascript" ></script>
<link rel="stylesheet" href="http://www.jacklmoore.com/colorbox/example4/colorbox.css" type="text/css" media="screen"/>
<script type="text/javascript">
$(document).ready(function () {
$("#test").click(function () { //on clicking the link above
$(this).colorbox({iframe:true, width:"90%", height:"100%"});
});
});
</script>
</head>
<body>
<h3>External Form</h3>
<a href="https://dev88.wufoo.com/forms/ze7xusq0j2tum9/" id="test">Please fill out my form.</a>
</body>
</html>
它现在运行正常,但我需要删除此代码中的滚动条,如何删除iframe的垂直滚动条?
有人能帮助我吗?
答案 0 :(得分:3)
试试这个。
$(document).ready(function () {
$("#test").click(function () { //on clicking the link above
$(this).colorbox({iframe:true, width:"90%", height:"100%", scrolling: false});
});
});
答案 1 :(得分:0)
根据文档http://www.jacklmoore.com/colorbox/,您应该可以通过添加scrolling:false
来完成您的工作。
因此:
$(document).ready(function () {
$("#test").click(function () { //on clicking the link above
$(this).colorbox({iframe:true, width:"90%", height:"100%", scrolling: false});
});
});
如果上述内容因某些未知原因而无效,请尝试将以下CSS代码添加到<head>
元素中。
<style type="text/css">
iframe {
overflow: auto;
overflow-y: hidden;
}
</style>
您还可以创建单独的CSS文件并在其中应用样式。
答案 2 :(得分:0)
添加滚动:false
$.colorbox({
inline:true,
width:'95%',
scrolling: false // *********
});