-1

jQueryを介してhtmlを動的にロードするためのコードを作成しました

$("table").eq(5).html('<table><tr><td>some data</td></tr></table><script language="JavaScript">function TCN_reload(from){}</script><table><tr><td>some data</td></tr></table>'); 

このコードを使用すると、ページ読み込みエラーが発生しました。しかし、そのスクリプトを削除してもエラーはありませんが、そのスクリプトも必要です。

私を助けてください!

ありがとうございました!

4

2 に答える 2

1

dom 要素内に動的に JavaScript を挿入する理由はありません。JavaScriptを削除してください。動作します

JavaScriptを追加するには、これに従うことができます

javascriptをjquery .html関数に入れます

于 2012-05-28T10:01:13.637 に答える
0

に変更<script language="javascript"><script type="text/javascript">ます。以下の詳細な説明を確認してください

type = content-type :

This attribute specifies the scripting language of the elements contents and overrides the default scripting language. The scripting language is specified as a content type (e.g., "text/javascript" ). We have to supply a value for this attribute. There is no default value for this attribute.

language ="JavaScript" :

This attribute specifies the scripting language of the contents of this element. Its value is an identifier for the language, but since these identifiers are not standard, this attribute has been deprecated(outdated by newer constructs) in favor of type.
于 2012-05-28T09:48:42.637 に答える