我有一些按钮选择,按下这些按钮可导航到URL,此网页实际上已嵌入程序中,并且导航至URL充当程序使用的参数,因此该URL实际上是对不同的字符串。例如:
'030056310001''039026320003''340003253OPP'
某些参数具有字母字符,一些参数仅包含数字,有些参数仅小于7,因此被视为octal numbers
我如何将所有值视为字符串,以便它们导航到特定的URI?
module Talkable
def talk
# talk like an adult
end
end
class Human
include Talkable
end
class Parrot
include Talkable
end
上面的代码显示了按钮的详细信息,下面是完整的代码,对您有所帮助。
var content = '<button type="button" onclick="location.href=' + actual_JSON[key].location_code + '">Learn More</button>';
答案 0 :(得分:0)
如Satpal所建议-
将location_code括在引号中,即onclick="location.href=\'' + actual_JSON[key].location_code + '\'"
我会把这个问题留给其他可能需要的人。