2017-03-02 91 views
0

我有這樣的代碼在一個ASPX頁面:如何改變iframe中滾動屬性是在JavaScript

<iframe height="78%" width="100%" id="ifrmReport" scrolling="auto" name="ifrmReport" frameborder="0"></iframe> 

我想改變這個屬性在JavaScript或jQuery的:scrolling="none"或根據一定的條件"auto"。任何人都可以幫忙嗎?由於

回答

0

您可以使用該attr()prop()方法來實現這一目標:

$('#ifrmReport').prop('scrolling', 'none'); 
// or 
$('#ifrmReport').attr('scrolling', 'none'); 
+0

我得到成員不是當我使用$( '#ifrmReport')發現的錯誤。ATTR( '滾動', '無') – 3355307

0

這是相當容易的。

jQuery的

if (condition===true) { 
    jQuery("iframe#id").attr("scrolling", "none"); 
} 

的JavaScript

if (condition===true) { 
    document.querySelector("iframe#id").setAttribute("scrolling", "none"); 
}