-1

非常に単純なことをしようとしていますが、検索が空になりました。別のページにリンクするだけのボタンを追加しようとしています。

このような:

$("#something").append("<br><center><input type='button' value='Go' onclick='Link to another page'></center>");
4

1 に答える 1

2

同じマークアップを保持したい場合は、これを使用します。

$("#something").append("<br><center><input type='button' value='Go' onclick='location.href=\"url\"'></center>");

urlを何かのようなものに置き換えindex.htmlます。

提案:

  1. <a>この種のものにはタグを付けることをお勧めします。
  2. <center>...</center>タグを に置き換えます<div style="text-align: center;"></div>
  3. この方法を与えることにより、JavaScript の邪魔にならない方法を使用します。

    $("#something").append("<div style='text-align: center;'><input type='button' value='Go' id="button"></div>");
    $("#button").click(function(){ location.href = 'url'; });
    
于 2012-12-31T16:47:53.517 に答える