91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript經典函數用法有哪些

發布時間:2021-12-03 14:01:37 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“javascript經典函數用法有哪些”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“javascript經典函數用法有哪些”這篇文章吧。

1。字符串替代方法。
 function String_Replace(srcString,findString,replaceString){
 return String_ReplaceB(srcString, findString, replaceString, 0);
 }
 function String_ReplaceB(expression, find, replacewith, start) {
 var index = expression.indexOf(find, start);
 if (index == -1)
 return expression;

 var findLen = find.length;
 var newexp = "";
 newexp = expression.substring(0, index)+(replacewith)+(expression.substring(index+findLen));

 return String_ReplaceB(newexp, find, replacewith, index+1+findLen);
 }

2。取字符串長度方法
 function String_GetLength(str){
 var i,rt=0;
 for(i=0;i<str.length;i++)
 {
 rt++;
 if(str.charCodeAt(i)>256)rt++;
 }
 return rt;
 }

3。求浮點數方法
 function getFloat(num)
 {
 var num = parseFloat(num);
 if(isNaN(num))num = 0;
 return num;
 }

4。求整數方法(用到浮點數取法)
 function getInt(num)
 {
 return parseInt(getFloat(num));
 }

5。判斷文本域對象是否惟空
function at_checkBlank(obj,caption) {
 if(String_Replace(obj.value," ","")=="")
 {
 obj.select();
 alert(caption+"不能為空&iexcl;");
 obj.focus();
 return false;
 }
 return true;
 }

6。兩個Select對象(llist,rlist)互相操作
var llist = fmObj.AssignedUser;//左邊已經選中項目
var rlist = fmObj.WaitedUser;//右邊未被選中的項目
//雙擊右邊select中的項目
function Assignuser() {
 if(rlist.selectedIndex < 0 || rlist.selectedIndex > rlist.options.length)return;
 var i;

 llist.options.length++;
 llist.options[llist.options.length-1].value = rlist.options[rlist.selectedIndex].value;
 llist.options[llist.options.length-1].text = rlist.options[rlist.selectedIndex].text;

 for(i = rlist.selectedIndex; i < rlist.options.length - 1; i ++) {
 rlist.options[i].value = rlist.options[i+1].value;
 rlist.options[i].text = rlist.options[i+1].text;
 }
 rlist.length --;
}
//把右邊選中的加入左邊
function AssignRight_AssignSelected(){
 for(var i = rlist.length - 1; i >= 0; i --) {
 if(rlist.options[i].selected) {
 llist.options.length++;
 llist.options[llist.options.length-1].value = rlist.options[i].value;
 llist.options[llist.options.length-1].text = rlist.options[i].text;

 for(var j = i; j < rlist.options.length - 1; j ++) {
 rlist.options[j].value = rlist.options[j+1].value;
 rlist.options[j].text = rlist.options[j+1].text;
 }
 rlist.length --;
 }
 }
}
//把右邊所有加入左邊
function AssignRight_AssignAll(){
 for(var i = rlist.length - 1; i >= 0; i --) {
 llist.options.length++;
 llist.options[llist.options.length-1].value = rlist.options[i].value;
 llist.options[llist.options.length-1].text = rlist.options[i].text;

 for(var j = i; j < rlist.options.length - 1; j ++) {
 rlist.options[j].value = rlist.options[j+1].value;
 rlist.options[j].text = rlist.options[j+1].text;
 }
 rlist.length --;
 }
}
//左邊select項目雙擊
function DenyUser() {
 if(llist.selectedIndex < 0 || llist.selectedIndex > llist.options.length)return;
 var i;
 rlist.options.length++;
 rlist.options[rlist.options.length-1].value = llist.options[llist.selectedIndex].value;
 rlist.options[rlist.options.length-1].text = llist.options[llist.selectedIndex].text;
 for(i = llist.selectedIndex; i < llist.options.length - 1; i ++) {
 llist.options[i].value = llist.options[i+1].value;
 llist.options[i].text = llist.options[i+1].text;
 }
 llist.length --;
}
//把左邊選中的項目加入右邊
function AssignRight_DenySelected() {
 for(var i = llist.length - 1; i >= 0; i --) {
 if(llist.options[i].selected) {
 rlist.options.length++;
 rlist.options[rlist.options.length-1].value = llist.options[i].value;
 rlist.options[rlist.options.length-1].text = llist.options[i].text;
 for(j = llist.selectedIndex; j < llist.options.length - 1; j ++) {
 llist.options[j].value = llist.options[j+1].value;
 llist.options[j].text = llist.options[j+1].text;
 }
 llist.length --;
 }
 }
}
//左邊所有項目加入右邊
function AssignRight_DenyAll() {
 for(var i = llist.length - 1; i >= 0; i --) {
 rlist.options.length++;
 rlist.options[rlist.options.length-1].value = llist.options[i].value;
 rlist.options[rlist.options.length-1].text = llist.options[i].text;
 for(j = i; j < llist.options.length - 1; j ++) {
 llist.options[j].value = llist.options[j+1].value;
 llist.options[j].text = llist.options[j+1].text;
 }
 llist.length --;
 }
}

以上是“javascript經典函數用法有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

方山县| 青神县| 奉新县| 庄浪县| 高陵县| 军事| 泾阳县| 监利县| 专栏| 晋江市| 岳池县| 通渭县| 莱阳市| 石门县| 石棉县| 泸定县| 八宿县| 汤原县| 扎鲁特旗| 贡嘎县| 康定县| 喀什市| 大连市| 包头市| 无为县| 保德县| 读书| 镇安县| 蓬溪县| 梁平县| 岳池县| 慈溪市| 扎鲁特旗| 应用必备| 卓尼县| 祁阳县| 苏尼特右旗| 陇川县| 桦甸市| 唐河县| 秀山|