使用JS更新w3-import-html

时间:2018-03-13 17:36:13

标签: javascript html

<div id="import" includeHTML="page.html"></div>

function getInclude() { 
    var x = document.getElementById("import").includeHTML; //returns 'undefined'
    alert(x);
}

function modInclude() { 
    document.getElementById("import").includeHTML = "page2.html"; //does nothing and FF's console outputs nothing
}

我正在使用W3's Import HTML处理项目,我想使用Javascript更改导入的页面。没问题,我认为这与改变图像的来源是一样的。

我试过的语法没有用。我做了一点调查,发现该属性本身返回了未定义的,这有点奇怪,因为它会按照它应该导入页面。

1 个答案:

答案 0 :(得分:0)

可能你可以使用:

hc = new org.apache.spark.sql.hive.HiveContext(sc)
hc.setConf("yarn.timeline-service.enabled","false")

编辑:我带了w3 documentation of that w3-html-include并添加了一个简单的代码片段,您可以检查以了解实际情况。 Snippet仅更改属性和警报以确保其已更改。奇怪:'D功能来自官方文档。

document.getElementById("import").setAttribute("w3-include-html", "contentYouWant.html");

干杯