我正在使用Jasmine来发送文字和设置灯具。
我在这里有以下测试代码,它演示了一个问题:
describe("foo", function() {
var $input = $('<input type="text" name="testfield" value="10" id="testInput">');
var $textArea = $('<textarea name="textarea" id="testTextArea">10</textarea>');
console.log( 'typeof: $input.get(0)' + ' ' + typeof $input.get(0) ); //object
console.log( 'typeof: $input[0]' + ' ' + typeof $input[0] ); //object
console.log( 'typeof: $input[0].toString()' + ' ' + typeof $input[0].toString() ); //string
beforeEach(function(){
var html = $input[0] + $textArea[0];
var ghtml = $input[0] + $textArea[0];
$('body').append(html);
$('body').append(ghtml);
$('body').append(ghtml + html );
$('body').append( $input[0] );
$('body').append( $textArea[0] );
$('body').append( $input[0] + '' + $textArea[0]);
$('body').append( $input[0] + $textArea[0]);
$('body').append( $input.get(0) + $textArea.get(0) );
$('body').append( $input.get(0) + ' ' + $textArea.get(0) );
$('body').append( $input.html() + $textArea.html() );
$('body').append( $input[0].toString() + $textArea[0].toString() );
$('body').append( ($input[0].toString()) + ($textArea[0].toString()) );
$('body').append( ($input.get(0).toString()) + ($textArea.get(0).toString()) );
$('body').append( ($input.get(0).toString()) + ' ' + ($textArea.get(0).toString()) );
setFixtures( html );
});
it("has a value of bar", function() {
expect(foo).toBe('bar');
});
});
忽略测试本身的作用,看看我想要附加到body标签的内容。我想要的是要附加的实际html元素,无论出于什么原因我都会获得一个html对象。
请看小提琴: http://jsfiddle.net/sidouglas/e6jau1mq/9/
这是茉莉花问题还是PEBKAC问题?
谢谢西蒙。
答案 0 :(得分:1)
.append
获取实际的HTML字符串,因此只需使用它而不是jQ对象:
var $input = '<input type="text" name="testfield" value="10" id="testInput">'
var $textArea = '<textarea name="textarea" id="testTextArea">10</textarea>'