var iframe = document.getElementById("configIframeId");
if (iframe.attachEvent) {
iframe.attachEvent("onload", function() {
//iframe加载完成后你需要进行的操作
$('input[type="text"]', $('.assetIframe').contents().find('body')).attr('readOnly','readOnly');
$('input[type="radio"]', $('.assetIframe').contents().find('body')).attr('disabled','disabled');
$('input[type="submit"]', $('.assetIframe').contents().find('body')).attr('type','hidden');
$('select', $('.assetIframe').contents().find('body')).attr('disabled','disabled');
});
} else {
iframe.onload = function() {
//iframe加载完成后你需要进行的操作
$('input[type="text"]', $('.assetIframe').contents().find('body')).attr('readOnly','readOnly');
$('input[type="radio"]', $('.assetIframe').contents().find('body')).attr('disabled','disabled');
$('input[type="submit"]', $('.assetIframe').contents().find('body')).attr('type','hidden');
$('select', $('.assetIframe').contents().find('body')).attr('disabled','disabled');
};
}