1

我试图<option><select>按下按钮时传递 on 的值。我试过的方法都没有奏效。

<select id="mySelect2"> 
    <option>Model Series</option>
<option value="{'varId':'4dr Sedan ','monthYear':'08\/1995 - 05\/2001'}">My Sedan  08/1995 - 05/2001</option>
....
...
</select>

我想将此 JSON 对象作为参数传递给按下按钮的 javascript 函数:

<button onclick="display(document.getElementById('mySelect2'));"> Go </button>

如何才能做到这一点?

另一方面,这很好用:

<select id="mySelect2" onChange="display(this) >
4

2 回答 2

2

对修正报价有帮助吗?

<option value="{'varId':'4dr Sedan ','monthYear':'08\/1995 - 05\/2001'}">4dr Sedan  08/1995 - 05/2001</option>
于 2012-12-27T19:58:48.087 回答
0

您应该将其中的引号更改为value

<option value="{'varId':'4dr Sedan ','monthYear':'08\/1995 - 05\/2001'}">
于 2012-12-27T20:01:10.847 回答