Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Khoảng trắng thành dấu cộng
URL: https://www.javascriptbank.com/spaces-to-plus-symbol.html
Hiệu ứng sẽ thay thế khoảng trống trong chuỗi do người dùng nhập vào thành dấu cộng.
Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Khoảng trắng thành dấu cộng
URL: https://www.javascriptbank.com/spaces-to-plus-symbol.html
<SCRIPT LANGUAGE="JavaScript">// Mike McGrath ([email protected])<!-- Beginfunction convertSpaces(str) {var out = "", flag = 0;for (i = 0; i < str.length; i++) {if (str.charAt(i) != " ") {out += str.charAt(i);flag = 0;}else {if(flag == 0) {out += "+";flag = 1; } }}return out;}// End --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<form>Your Full Name: <input name=input type=text size=15 onBlur="this.value = convertSpaces(this.value);"><input type=button value="Ok!"></form><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->