0

I am developing that website and I have the problem that my buttons on the result page, firstly loaded as ordinary html buttons than they are shaped by jquery button function that I used. Is there any solution to show these button as shaped from the beginning? May be I can hide them up to end of the page load?

4

2 に答える 2

0

最も速い方法は、jqueryがデフォルト状態のボタンに適用するスタイルクラスを確認してから、同じクラスを自分でhtmlテンプレートに追加することです。これは、他のjqueryスタイルの要素でも機能します。

于 2012-05-19T04:45:31.910 に答える
0

ボディが読み込まれたらすぐに jquery 関数を呼び出します。または jquery .ready()イベントを使用します

<script>
  $(document).ready(function () {
   shape_box(); //your box shaping function
});
  </script>
于 2012-05-18T13:50:21.097 に答える