Code- unicode value
the Unicode value
by I Sang Hyeon
HTML
<ul id="ul-wraped">
<li>
<input type="text" id="txt" />
</li>
<li>
<dl id="dlGetUval">
<dt>charCodeAt: <input type="button" value="Unicode value"/></dt>
<dd><p> Unicode value !!</p></dd>
</dl>
</li>
<li>
<dl id="dlGetUval2">
<dt>charCodeAt: <input type="button" value="Unicode value"/></dt>
<dd><p> Unicode value !!</p></dd>
</dl>
</li>
</ul>
JavaScript
/* NOW TESTING */
$(document).ready(function(){
var actionKey = '';
var resultText = '';
var orgText = $('#txt').val();
var orgTextLen = orgText.length;
$('#ul-wraped li dl dt input[type="button"]').click(function(){
actionKey = $(this).closest('dl').attr('id');
alert('!!!: '+actionKey);
while(orgTextLen--){
if(actionKey === 'dlGetUval'){
}
}
});
/*
$('#cmdGetUval').click(function(){
var txt = $('#txt').val();
var len = txt.length;
var str = '';
while(len--){
str += txt.charCodeAt(len)+',';
}
$('p').text(str);
});
*/
});
/*
charAt() Returns the character at the specified index (position)
charCodeAt() Returns the Unicode of the character at the specified index
concat() Joins two or more strings, and returns a new joined strings
endsWith() Checks whether a string ends with specified string/characters
fromCharCode() Converts Unicode values to characters
includes() Checks whether a string contains the specified string/characters
indexOf() Returns the position of the first found occurrence of a specified value in a string
lastIndexOf() Returns the position of the last found occurrence of a specified value in a string
localeCompare() Compares two strings in the current locale
match() Searches a string for a match against a regular expression, and returns the matches
repeat() Returns a new string with a specified number of copies of an existing string
replace() Searches a string for a specified value, or a regular expression, and returns a new string where the specified values are replaced
search() Searches a string for a specified value, or regular expression, and returns the position of the match
slice() Extracts a part of a string and returns a new string
split() Splits a string into an array of substrings
startsWith() Checks whether a string begins with specified characters
substr() Extracts the characters...