G'day there,在變量內添加兩個輸入
我不確定我該如何做到這一點。這裏有一些代碼來提供一些上下文。
// API dictionary
$(document).ready(function(){
var itemNameTitle = 'Task'
var itemQtyTitle = 'Quantity'
var itemRateTitle = 'Rate <span>($/hr)</span>'
var itemPriceTitle = 'Price <span>($)</span>'
var itemNameInput = '<input type="text" name="item-name-input" value="Mockups">'
var itemQtyInput = '<input type="text" name="item-qty-input" value="1">'
var itemRateInput = '<input type="text" name="item-rate-input" value="35">'
var itemPriceCalc = 128/2
$('#page').load('templates/default.html', function() {
$this = $(this);
$this.html($this.html().replace('%item-name-title%',itemNameTitle));
$this.html($this.html().replace('%item-qty-title%',itemQtyTitle));
$this.html($this.html().replace('%item-rate-title%',itemRateTitle));
$this.html($this.html().replace('%item-price-title%',itemPriceTitle));
$this.html($this.html().replace('%item-name-input%',itemNameInput));
$this.html($this.html().replace('%item-qty-input%',itemQtyInput));
$this.html($this.html().replace('%item-rate-input%',itemRateInput));
$this.html($this.html().replace('%item-price-calc%',itemPriceCalc));
});
});
我希望你能看到我在這裏想要做的。基本上我需要itemQtyInput
和itemRateInput
的value
s乘以一起,然後張貼到頁面上的div。不幸的是,當我這樣做時,它最終會發布'NaN'。
任何人都知道我在做什麼錯了?
如何ü可以申請師當itemRateInput是一個字符串變量? –
@NitinVarpe請你詳細說明一下嗎?我是一名jQuery初學者。 –
在你的問題中沒有jQuery。這只是普通的Javascript。您將兩個變量設置爲字符串。 – Barmar