摘要:
$("#divId input").val(""); 阅读全文
摘要:
1.substr var str = "Hello world!"; document.write(str.substr(3)); 输出:lo world! var str = "Hello world!"; document.write(str.substr(3,7)); 输出:lo worl 2.toFixed(四舍五入) var num = new Number(12.38); do... 阅读全文