1
我在我的網站中使用jquery.content-panel-switcher頂級菜單。它顯示和隱藏不同的形式,如jQuery內容面板切換器阻止訪問表單元素
<div id="switcher-panel"></div>
<!-- form to add, later do import here -->
<div id="adds-content" class="switcher-content set1 show">
<form action='/post' name='submitform' id="submitform" method='post' class='pure-form'>
<textarea columns="40" rows="4" name='entry[body]' id="statement" placeholder='enter a note here to visualize the words and their connections, you can also use #hashtags and @mentions.'><% if (url) { %><%= urltitle %> <%= url %> @bookmarks<% } %></textarea>
<div id="addToContextsLabel">contexts:</div>
<ul id="addToContexts"></ul>
<input type="hidden" id="addedContexts" name="addedContexts">
<input type="hidden" id="context" name="context" value="<%= context %>">
<input type="hidden" id="selectedContexts" name="selectedContexts" value="">
<input type="hidden" name="statementid" value="">
<br>
<input type='submit' name="submit" id="submitbutton" value="save" class="pure-button pure-button-primary">
</form>
</div>
<!-- form to find -->
<div id="finds-content" class="switcher-content set1">
<form class="pure-form" id="searchform">
<input type="text" id="search" size="17" maxlength="20" class="pure-input" placeholder="search...">
<input type='submit' name="submit" value="find" class="pure-button pure-button-primary">
</form>
</div>
現在,當我嘗試使用document.submitform.submit.value = "edit";
它只是即使形式我的瀏覽器中顯示不工作訪問的元素。
你知道這個問題可能是什麼嗎?
謝謝!
與最後一個問題相同,您需要顯示更多代碼才能瞭解其不起作用。在jsfiddle.net中的演示將非常有幫助。顯示的代碼在這裏很好地工作http://jsfiddle.net/3r6ykm4t/ – charlietfl