Home >Web Front-end >JS Tutorial >A simple example of Jqgrid table changing as the window size changes_jquery

A simple example of Jqgrid table changing as the window size changes_jquery

WBOY
WBOYOriginal
2016-05-16 17:06:401289browse

Using the jquery plug-in, it mainly realizes that when the window changes, the size of the jqgird table also changes accordingly

html:






JS:
$(function(){
$(window).resize(function(){
$("#list").setGridWidth($( window).width());
});
});

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn