简体   繁体   中英

Bootstrap overiding jquery plugin

I am new to mvc5 and bootstrap and applying an jquery plugin in but the style is not geting updated. Is there anyway that i can prevent the bootstrap overiding?

the code am using in view is as follows

<script language="javascript" type="text/javascript">
    $(document).ready(function () {

        $('#myDataTable').dataTable().makeEditable();
    });
</script>

the files that i am binding are as follows

<script src="~/Content/jquery.dataTables_themeroller.min.css" type="text/css"> </script>
<script src="~/Content/jquery-ui-1.10.4.min.css" type="text/css"></script>

<script src="~/Scripts/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="~/Scripts/jquery-ui-1.10.4.min.js" type="text/javascript"></script>
<script src="~/Scripts/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="~/Scripts/jquery.dataTables.editable.js" type="text/javascript"></script>
<script src="~/Scripts/jquery.validate.js" type="text/javascript"></script>

The js script style wasnt loading in the page. It resolved by binding all the js files after bootstrap.css and bootstrap.js in layout.cshtml –

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM