How do i print a string in html?

If just for example I do:

var = "Hello, World!';
}]];

//docs.angularjs.org/api/ngSanitize

//docs.angularjs.org/api/ng/directive/ngBindHtml

answered Sep 2, 2015 at 13:33

You can also try something like that:

    app.filter['to_trusted', ['$sce', function[$sce] {
      return function[text] {
        return $sce.trustAsHtml[text];
      };
    }]];

and then, in view:

    ng-bind-html=" myHTML | to_trusted"

answered Sep 2, 2015 at 14:39

1

Not the answer you're looking for? Browse other questions tagged javascript html angularjs text or ask your own question.

JavaScript Display Possibilities

JavaScript can "display" data in different ways:

  • Writing into an HTML element, using innerHTML.
  • Writing into the HTML output using document.write[].
  • Writing into an alert box, using window.alert[].
  • Writing into the browser console, using console.log[].

Using innerHTML

To access an HTML element, JavaScript can use the document.getElementById[id] method.

The id attribute defines the HTML element. The innerHTML property defines the HTML content:

Example



My First Web Page


My First Paragraph


document.getElementById["demo"].innerHTML = 5 + 6;


Try it Yourself »

Changing the innerHTML property of an HTML element is a common way to display data in HTML.

Using document.write[]

For testing purposes, it is convenient to use document.write[]:

Example



My First Web Page


My first paragraph.


document.write[5 + 6];


Try it Yourself »

Using document.write[] after an HTML document is loaded, will delete all existing HTML:

Example



My First Web Page


My first paragraph.

Try it


Try it Yourself »

The document.write[] method should only be used for testing.

Using window.alert[]

You can use an alert box to display data:

Example



My First Web Page


My first paragraph.


window.alert[5 + 6];


Try it Yourself »

You can skip the window keyword.

In JavaScript, the window object is the global scope object, that means that variables, properties, and methods by default belong to the window object. This also means that specifying the window keyword is optional:

Example



My First Web Page


My first paragraph.


alert[5 + 6];


Try it Yourself »

Using console.log[]

For debugging purposes, you can call the console.log[] method in the browser to display data.

You will learn more about debugging in a later chapter.

Example




console.log[5 + 6];


Try it Yourself »

JavaScript Print

JavaScript does not have any print object or print methods.

You cannot access output devices from JavaScript.

The only exception is that you can call the window.print[] method in the browser to print the content of the current window.

Example



Print this page


Try it Yourself »



How do you print a string in HTML?

You should be using ng-bind-html directive. Creates a binding that will innerHTML the result of evaluating the expression into the current element in a secure way.

How do you print something in HTML?

Printing an HTML Document.
Open a document in the HTML editor..
Do one of the following: On the main menu, click File > Print. Press CTRL+P. The document prints as it appears in the HTML editor, NOT as it appears in a browser..

How do you add a string in HTML?

Using the innerHTML attribute: To append using the innerHTML attribute, first select the element [div] where you want to append the code. Then, add the code enclosed as strings using the += operator on innerHTML.

What is string tag in HTML?

HTML Text Formatting Elements.

Chủ Đề