From 5acecf6e2814701f9e22f91f17fcb33ef910e88a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Sun, 7 Jan 2007 23:59:13 +0000 Subject: [PATCH] Implemented #756, making text(String) really useful --- ChangeLog.txt | 1 + src/jquery/coreTest.js | 4 ++++ src/jquery/jquery.js | 22 +++++++++++++++------- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 0d3bfd5..c91bf66 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -27,6 +27,7 @@ New and Noteworthy - Improved docs for append, prepend, before and after, merging the three pairs into one - Improved show/hide animations to show only hidden and hide only visible elements - Added attr(String,Function) to calculate the value and support for attr("key", "${formula}") syntax, a shortcut for the former + - text(String) now escapes HTML per default and optionally stris tags completely 1.0.4 ----- diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 436dcc5..78d4a27 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -435,3 +435,7 @@ test("removeAttr(String", function() { ok( $('#mark').removeAttr("class")[0].className == "", "remove class" ); }); +test("text(String, Boolean)", function() { + ok( $("#foo").text("
Hello cruel world!
")[0].innerHTML == "<div><b>Hello</b> cruel world!</div>", "Check escaped text" ); + ok( $("#foo").text("
Hello cruel world!
", true)[0].innerHTML == "Hello cruel world!", "Check stripped text" ); +}); \ No newline at end of file diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index e380441..78d1ab9 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -526,10 +526,19 @@ jQuery.fn = jQuery.prototype = { */ /** - * Set the text contents of all matched elements. This has the same - * effect as html(). + * Set the text contents of all matched elements. * - * @example $("p").text("Some new text."); + * Similar to html(), but escapes HTML (replace "<" and ">" with their + * HTML entities. + * + * If stripTags argument is set to true, HTML is stripped. + * + * @example $("p").text("Some new text."); + * @before

Test Paragraph.

+ * @result

<b>Some</b> new text.

+ * @desc Sets the text of all paragraphs. + * + * @example $("p").text("Some new text.", true); * @before

Test Paragraph.

* @result

Some new text.

* @desc Sets the text of all paragraphs. @@ -537,13 +546,12 @@ jQuery.fn = jQuery.prototype = { * @name text * @type String * @param String val The text value to set the contents of the element to. + * @param Boolean stripTags (optional) Wheather to strip or only escape tags * @cat DOM/Attributes */ - text: function(e) { - // A surprisingly high number of people expect the - // .text() method to do this, so lets do it! + text: function(e, stripTags) { if ( typeof e == "string" ) - return this.html( e ); + return this.html( stripTags ? e.replace(/<\/?[^>]+>/gi, '') : e.replace(//g, ">") ); e = e || this; var t = ""; -- 1.7.10.4