使用引號的基本問題,我聽說過的地方,它能夠更好地寫:關於jQuery的
$(document).ready(function() {
$('a').append('<strong>Hello</strong>');
});
,而不是這樣的:
$(document).ready(function() {
$("a").append("<strong>Hello</strong>");
});
但最後一個,是這樣的,它的寫在jQuery的官方文檔中。
那麼當代碼變大時哪些會產生更多問題?單引號(')或雙引號(「)報價? 或其無關?
這是無關緊要的,請參閱http://stackoverflow.com/questions/242813/when-to-use-double-or-single-quotes-in-javascript尋求建議。 – 2010-01-02 15:24:50