JS常用信息:
var obj = {id: 1, name: 'test',};紧接'test'后那个逗号就会导致IE出错。而FireFox正常。
document.getElementById( id ).selectedIndex = $('#' + id + " option[value='" + someval + "']").attr('index');
// 判断DOM元素是否存在 if ($('#id')[0] ) { do_fun(); // exists } if ($('#id').length > 0) { do_fun(); }
错误的框架访问:
$(window.top.document).find('#topFrame p').text(); $(window.parent.document).find('#topFrame').remove();
正确的框架访问:
$(window.parent.frames['left'].document).empty(); //删除左框架“内容”
在顶级窗口中 改变框架本身属性,此时的框架是顶级窗口的一个DOM 对象
$(window.parent.parent.document).find('#fs2').attr('cols', '155,*'); $(window.top.document).find('#left').remove();
以下是跨框架访问操作DOM 元素 . frames + id 的方式最兼容
window.top.document.getElementById('left').id; window.top.frames[0].document.getElementById('SendFlag').id; window.top.frames['topFrame'].document.getElementById('SendFlag').id; window.top.frames['left'].document.getElementById('mli0').name; $(window.top.frames['left'].document).find('#mli0').attr('id'); $(window.top.frames['topFrame'].document).find('p').text('cqple'); $('p', window.top.frames['topFrame'].document).text('cqple');
// jquery $("#父窗口元素ID",window.parent.document)...就行了 //js 版本 window.parent.document.getElementById()
var el = $(selector); // 取到的el变量为jquery对象,el[0]则为 selector对象 var node = el.jquery ? el[0] : el; // el.jquery 返回真(其实是jquery版本号)说明el为jquery对象
var pdata = '&a=33' + '&b=' + encodeURIComponent('zz=3'); // var pdata = {a: 33, b: 'zz=3', c: 'z3&?aj=3', d: encodeURIComponent('z3&?aj=3')}; $.ajax({ type : "POST", url : "some.php", data: pdata success: function(msg){ // do something } });