爲什麼我的<input type="submit"
不顯示在http://ballpointradio.com/new/page_edit.php?它應該在textarea下面。我的輸入類型=「提交」不顯示?
這真的讓我莫名其妙!它是我的jQuery嗎?我很確定它不是...
爲什麼我的<input type="submit"
不顯示在http://ballpointradio.com/new/page_edit.php?它應該在textarea下面。我的輸入類型=「提交」不顯示?
這真的讓我莫名其妙!它是我的jQuery嗎?我很確定它不是...
$("#page_selection").change(function(){
$("#" + this.value).show().siblings().hide();
});
$("page_selection").change();
此代碼,負載,做到這一點:
$("#edit1").show().siblings().hide();
考慮到<input type="submit">
是$('edit1')
兄弟,它被隱藏!
只需將.siblings()
更改爲.siblings('textarea')
,因此它只隱藏同時也是textareas的兄弟姐妹!
它有style="display: none"
集合。
雖然我無法立即找出原因。
我不是一個jquery的人,但你可以看看hide()
方法調用的一些可能會干擾。此舉一出,例如:
$("#" + this.value).show().siblings().hide();
爲了確認Lauri的答案,它絕對是隱藏提交按鈕的Javascript。當你禁用Javascript時,按鈕正常顯示。我也會仔細看看上面的這一行。 – Wireblue 2010-06-24 03:16:56
它*是你的jQuery的東西。當我禁用了JavaScript(我最初做的)時,它顯示在第二個文本區域的右側。啓用時,文本區域或提交按鈕不顯示。 – animuson 2010-06-24 03:12:35