»
Tiếng AnhTiếng PhápTiếng Việt

In - Khoảng trắng thành dấu cộng - JavaScriptBank.com

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

Khoảng trắng thành dấu cộng © JavaScriptBank.comHiệ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



JavaScript
<SCRIPT LANGUAGE="JavaScript">// Mike McGrath (mike_mcgrath@lineone.net)<!-- 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-->


HTML
<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-->