在html代碼中,我使用代碼 <input type = "text" id = "[email protected]">
以獲取文本 現在需要獲取其輸入文本字段的值。我正在使用jQuery來做到這一點:html標記的id中的特殊字符
$(document).ready(function() {
$(".bid").click(function() {
idVal = this.id
bidID = "#" + idVal + "bid"
spanID = "#" + idVal + "cbid"
bidValue = $(bidID).val();
alert(idVal)
alert(bidID)
alert(bidValue) //this alert says undefined
$(spanID).html(' ').load('{% url online_machines %}?id=' + idVal + '&bidvalue=' + bidValue);
});
});
通過這樣做,我得到的值錯誤未定義。 我試圖從id中刪除特殊字符以獲取其值。但我需要帶特殊字符的ID。 我如何使用jquery獲得它的值?
我相信這將是$( '#ABC \\ @高清\\。com') – mplungjan