どこかでjQueryを呼び出して を表示する Web アプリがあります<div>
。その呼び出しを傍受する方法を知っている人はい<div>
ますか?
そのdivを別のボタンに表示する必要があり、それを表示する元のボタンには<div>
多くのことが発生するため、その表示のみを分離したいと思い<div>
ますか?.
アプリはaspです。jQueryを使用したネット Web フォーム。
jQuery のデバッグのヒント
@Jazzepi が言うように、Chrome + 開発者ツールは、JavaScript コードの問題を見つけたいときに役立ちます。
個人的には、 FireBug拡張機能を備えたFirefoxを使用することを好みます。JavaScript コンソールが表示され、そこにエラー メッセージが表示されます。
Inside of the source <html>
you'll notice a <script>
reference. This reference will usually either outline the entire jQuery code. The other possible implication will be a reference URL to where that <script>
file is located.
Inside of this file you will see the code for jQuery that is allocating that specific <div>
and Hiding and Showing. Unfortunately without code, it is difficult to specify exact details.
Hopefully this points you in the right direction.