javascript¶ÔÏó»úÖÆ
var currItem = listbox.options[currIndex];
var prevItem = listbox.options[currIndex - 1];
//alert(currItem);
alert(prevItem.text);
listbox.options[currIndex - 1].text = currItem.text;
listbox.options[currIndex - 1].value = currItem.value;
alert(prevItem.text); //Á½´ÎalertÖµÊDz»Í¬µÄ
listbox.options[currIndex].text = prevItem.text;
listbox.options[currIndex].value = prevItem.value;
Ïà¹ØÎĵµ£º
<script type="text/javascript">
window.onbeforeunload=function()
{
alert("onbeforeunload event...");
//return false;
}
</script>
<a href="#" onclick="return true;">²âÊÔ1</a><br/>
<a href="javascript:void(0)" onclick="return true;">²âÊÔ2</a><br/& ......
JavaScriptÀï×Ö·û´®ÀàÐÍת»»³ÉÈÕÆÚÀàÐÍ£º
Èç¹û×Ö·û´®ÖÐÓпոñ»òÊÇÆäËû·Ö¸î·û·Ö¸î£¬¿ÉÒÔÓÃsplit·½·¨ÏȲð·Ö£¬·µ»ØÒ»¸öÊý×飬ÔÙ°ÑÕâ¸öÊý×éÀïµÄÄêÔÂÈÕ×÷Ϊ²ÎÊý´«µ½new Date()ÀïÉú³ÉÈÕÆÚÀàÐÍ£»
Èç¹ýûÓÐÌØÊâ·Ö¸ô·û£¬¿ÉÒÔÓÃsubstr£¨x£¬y£©·½·¨À´È¡×Ó×Ö·û´®À´Éú³ÉÈÕÆÚ£¬substr£¨x£¬y£©Àx±íʾȡ×Ö´®µÄ¿ªÊ¼Î»Öã¬y±íʾ×Ó´®µÄ³ ......
JavaScript»ù´¡
stringObject.charAt(index)·½·¨£º·µ»ØÖ¸¶¨Ë÷ÒýλÖô¦µÄ×Ö·û¡£
stringObject.slice(start,[end])ºÍstringObject.substring(start,[end])·½·¨¶¼½ÓÊÜÁ½¸ö²ÎÊý£¬·Ö±ðΪ×Ó×Ö·û´®µÄÆðʼλÖúÍÖÕֹλÖ㬷µ»ØÕâÁ½ÕßÖ®¼äµÄ×Ö·û´®£¬²»°üÀ¨ÖÕֹλÖõÄÄǸö×Ö·û´®¡£Èç¹û²»Ö¸¶¨µÚ¶þ¸ö²ÎÊý£¬ÔòĬÈÏΪ×Ö·û´®µÄ³¤¶È£¬¼´ ......
function checkImgAddr(url){
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("post",url,false);
xmlhttp.send();
if(xmlhttp.readyState==4){
if(xmlhttp.status==404){
return "File Not Exist.";
}else if(xmlhttp.status == 200){
re ......
Ìí¼Ó
<script>
var oDiv = document.createElement("DIV");
oDiv.id = "shop01";
oDiv.style.top = 200;
oDiv.style.left = 200;
oDiv.style.background = '#FFFF00';
oDiv.style.visibility = 'visible';
oDiv.innerHTML="123123"
document.body.appendChild(oDiv ......