jQuery working in dreamweaver but not in browser
问题 So, here's my code(not all of it, just what you need to understand): HTML: <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"> jQuery(document).ready(function(){ jQuery("nav ul ul").each(function(){ var navWidth=jQuery(this).width(); var liWidth=jQuery(this).closest("li").width(); var gaps=navWidth-liWidth; var moveLeft=-gaps/2; jQuery(this).css({"margin-left":moveLeft}); }) }) </script> </head> <body> <header> <nav> <ul><li> <a href="index.html">ACASA</a><