我有一個jQuery的功能,在提交事件產生url.If一個沒有定義的參數,增添網址應跳過什麼是正確的語法jQuery中
var category =$("#prod_category").val();
var group =$("#prod_group")
window.location.href = "/page/" +
**//add to url if category is definned**
encodeURI(category) + "/" +
**//add to url if group is definned**
encodeURI(group) + "/" +
值得關注的是你正在尋找香草JavaScript語法 - 沒有必要使用jQuery作爲'if's tatement。 – 2012-07-17 10:17:07