0

我应该使用参数对产品进行变量描述。如何让函数区分参数?

参数示例:

buildProduct('HP 4426', '4426','Newest and Best Laptop from HP Computer') 
buildProduct('IBM 88123 ThinkPad', '88123','IBM micro Laptop Computer') 
buildProduct('Dell Dimension 2400', '2400X','A fast 2.4 ghz computer, 80 GB HD, 256       Meg, CDRW and DVD.') 

代码:

function buildProduct(prodName, prodID, prodDescription) {
var data = makeHeader()
data +=" .....

    ..... output a simple one line description of the product using the parameters above
    ..... add the footer, after the one line description
    ..... use just one document.writeln in this function (see warning below)
    ..... close the document (see warning below)

}

所以我有几个不同的链接,每个链接都打开一个描述窗口。如何HTML判断要调用哪个参数?

我在理解出了什么问题时遇到了一些麻烦。

4

0 回答 0