js获取页面html

页面中有动态添加的数据,直接用html获取不到input等标签动态添加的值

function getHTML() {
        $('#dv :input').each(function () {
            ///////////获取容器innerHTML要想包含输入的值,需要设置过value属性。其他对象重置selected、checked属性
            switch (this.type) {
                case 'text': this.setAttribute('value', this.value); break;
                case 'checkbox':
                case 'radio':
                    if(this.checked)this.setAttribute('checked', 'checked');
                    else this.removeAttribute('checked');
                    break;
                case 'select-one':
                case 'select-multiple':
                    $(this).find('option').each(function () {
                        if(this.selected)this.setAttribute('selected', 'selected');
                        else this.removeAttribute('selected');
                    });
                    break;
                case 'textarea': this.innerHTML = this.value; break;
            }
        });
        alert($('#dv').html())
    }

猜你喜欢

转载自www.cnblogs.com/houxiaobei/p/9466739.html