0

我一直在尝试向我的 Ironspeed 应用程序添加实时输出字段,但我没有成功,Ironspeed 移动应用程序会读取所有字段但它不显示实时输出字段。我尝试在 Ironspeed 论坛中搜索,并观看了他们的一些 youtube 视频,他们向您展示了如何在 Ironspeed 中输入 HTML,但我没有成功,这是一个片段:

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>Output element sample</title>
<body>
    <article>
        <header>
            <h1>Output element sample</h1>
            <p>Demo showing output element in HTML5</p>
        </header>
        <form onsubmit="return false" oninput="totalamount.value = Math.round( Qty.value * exchangerate.value)">
            I have<input name="Qty" id="Qty" type="number">
            <br />
            Exchange Rate<input name="exchangerate" id="exchangerate" type="number">
            <br />
            Total amount <output name="totalamount" id="totalamount" for="principal period interest"></output>
        </form>
        <footer>
            <h1></h1>
            <p>HTML Goodies</p>
        </footer>
    </article>
</body>
 
</html>

我真的很感谢在这件事上提供一些帮助。

4

0 回答 0