Source.HTMLDOM HTML解析
<!DOCTYPE html>
<html>
<body>
<h1 style="color:red">Hello World</h1>
<p id="demo" style="color:red">Click the button below to remove the style attribute from the header above.</p>
</body>
</html>
Parser.html
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Parse</button>
<script>
function myFunction()
{
document.getElementsByTagName("H1")[0].removeAttribute("style");
document.getElementsByTagName("P")[0].removeAttribute("style");
};
</script>
</body>
</html>
現在我需要的是引導,我需要從解析器解析按鈕。 html將source.html的功能應用到output.html並保存在source.html的相同路徑中...
請幫助我...
你需要使用服務器端語言,像PHP,與文件系統的工作。 您的JavaScript函數不適用於此,我認爲FileSystem API是有限的。你想看看PHP和AJAX –
這不是關於解析。解析是瀏覽器爲構建DOM樹所做的工作。因此,當您操作DOM時,文檔必須已經被解析。 –