提问者:小点点

在JavaScript中插入超文本标记语言超文本标记语言


我对编程相当陌生,特别是HTML/CSS和JavaScript,如果我的解释不是很好,我很抱歉。

我使用的离子只是一个模板来设置它。我的问题是,这份文件是一份文件。html文件,我在

如何在HTML文档中插入JavaScript中的HTML?谢谢,请简单解释一下概念,以便我能理解:)

<html>

<body>
    <ion-view>
        <ion-nav-title>Text</ion-nav-title>
        <ion-content overflow-scroll="true" padding="true" class="has-header">
            <div>
                <button class="button button-full button-energized">

                    <script type="text/javascript">
                        <script type="text/html">



                    </script>


                    </script>


                </button>
            </div>
        </ion-content>
    </ion-view>

</body>

</html>

共3个答案

匿名用户

作为初学者,我首先建议你使用jQuery而不是纯javascript。首先,打字要少得多,而且(恕我直言)更容易掌握。你在jQuery中编写代码,而在幕后,jQuery在运行时将其转换为javascript。要使用jQuery,您所要做的就是在中包含jQuery库。

<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>

允许您将超文本标记语言注入页面的Javascript(jQuery)如下所示:

$('#myButt').click(function(){
	$('body').append('<div id="injectedDIV">This added in</div>');
});
#injectedDIV{width:100%;padding:20px;background:wheat;color:orange;text-align:center;font-size:2rem;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

<ion-view>
<ion-nav-title>Text</ion-nav-title>
<ion-content overflow-scroll="true" padding="true" class="has-header">
	<div>
		<button id="myButt" class="button button-full button-energized">Click Me</button>
	</div>
</ion-content>
</ion-view>

匿名用户

要做到这一点需要几步。请按以下列表操作:

>

这些数据将作为json abject返回,并需要存储在变量中。由于你是初学者,你应该遵循以下链接:http://www.w3schools.com/ajax/

现在,您将能够访问此对象,请访问以下链接:http://www.w3schools.com/js/js_json.asp

希望这有点帮助。

匿名用户

我不太明白你想问什么。我想这是关于JavaScript中的HTML。

是的,您可以使用

document.getElementById('mydictag'). innerHTML="

在引号(在EQUAL符号之后)中,有您放置超文本标记语言代码的位置。在JS之外,你需要一个