checkbox全選全不選:
prop用於操作元素的固有屬性
attr用於自定義屬性
$("#all").click(function()else
});iframe內的元素操作外部元素:
$('#header-pic img', window.parent.document).attr("src", headpicsrc);//操作iframe父級元素
var height=document.getelementbyid("iframe").contentwindow.document.getelementbyid("main-content").offsetheight;
document.getelementbyid("iframe").contentwindow.document.body.style.height=""+height+"px";//操作iframe內文件元素
ajax提交同步非同步問題:
function checkout(str,checkresult) /order/checkidcard.do?bid=$',
data : ,
datatype : 'json',
success : function(data)
checkresult="false";
} else if (data.msg=="2") else if ("3" == data.msg)
},error : function() ,
});return checkresult;};}
開發中遇到的小問題
1 多種資料庫型別時如何轉換字串排序,甚至是替換字元,可以使用cast replace column,as decimal select cast replace column,as decimal from table order by cast replace column,as decimal...
使用Entity開發遇到的小問題
1 異常 entitycommandexecutionexception 儲存區資料提供程式返回的資料讀取器所具有的列數對於所請求的查詢不夠。這個異常是因為儲存過程匯入函式呼叫的異常。過程的 alter procedure dbo eware get identity id table name n...
PHP 開發常常遇到的小問題
這裡列舉了本人在做開發的時候常常會用到的小問題,然後累計了下來,防止以後忘記 1.php 實現按照指定字元,將字串拆分成陣列 str 1 2 3 4 5 var explode str print r var var dump var 2.php取兩個陣列的交集 ccc array intersec...