Generate table row break conditionally

后端 未结 1 1087
有刺的猬
有刺的猬 2021-01-24 19:00

I have a

with two cells that I want to display horizontally if device is computer or vertically if it\'s mobile. I borrowed a JS function to detect mo
1条回答
  •  青春惊慌失措
    2021-01-24 19:48

    If you want to do only on initial load

    function isMobile() {
        return true; // or false
    }
    
    $(function () {
    
        if (isMobile()) {
            $td = $('#tbl').find('#row1_item2').detach();
            $a = $('#row1').after(`
`); $('#row2').append($td); } $('#row1_item2').css('display', 'table-row'); })

a

0 讨论(0)
提交回复
热议问题