我想在使用一些簡單的jQuery的重力形式輸入之前注入一些HTML。jQuery之前()輸出爲字符串而不是HTML
這裏是我的代碼:
var formInputs = jQuery("form li input")
formInputs.each(function(index) {
this.before('<h1>Hello, world!</h1>');
});
這裏是什麼樣子的每個輸入
是否有某種形式與重力形式的衝突?
編輯:我試着用
this.before(jQuery('<h1>Hello, world!</h1>'));
更換
this.before('<h1>Hello, world!</h1>');
,而是我得到jQuery對象
嘗試'this.before(jQuery的( '
你好,世界
!'));' –@CameronHurd感謝的建議,請參閱編輯 – softcode